From 34738803512d279de51532b1a8848584c54a3a52 Mon Sep 17 00:00:00 2001 From: Rhys Williams <26030558+rhys96@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:23:00 +0100 Subject: [PATCH 1/5] Remove leading spaces on initial volumeMount causing formatting errors --- stable/xray/templates/xray-statefulset.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/xray/templates/xray-statefulset.yaml b/stable/xray/templates/xray-statefulset.yaml index 594d719fb..c290240b2 100644 --- a/stable/xray/templates/xray-statefulset.yaml +++ b/stable/xray/templates/xray-statefulset.yaml @@ -1036,8 +1036,8 @@ spec: {{- tpl .Values.common.extraEnvVars . | nindent 8 }} {{- end }} volumeMounts: - - name: data-volume - mountPath: "{{ .Values.xray.persistence.mountPath }}" + - name: data-volume + mountPath: "{{ .Values.xray.persistence.mountPath }}" {{- if or .Values.common.customVolumeMounts .Values.global.customVolumeMounts }} {{ tpl (include "xray.customVolumeMounts" .) . | indent 8 }} {{- end }} From 2df8513c5f76203863cb2196afdec02ca01b7928 Mon Sep 17 00:00:00 2001 From: Rhys Williams <26030558+rhys96@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:27:23 +0100 Subject: [PATCH 2/5] Update version and documentation --- stable/xray/CHANGELOG.md | 3 +++ stable/xray/Chart.yaml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/stable/xray/CHANGELOG.md b/stable/xray/CHANGELOG.md index af7e645ca..172696205 100644 --- a/stable/xray/CHANGELOG.md +++ b/stable/xray/CHANGELOG.md @@ -1,6 +1,9 @@ # JFrog Xray Chart Changelog All changes to this chart will be documented in this file. +## [103.96.2] - July 1, 2024 +* Fixed formatting error associated to the `volumeMounts` for the `panoramic` microservice [GH-1895](https://github.com/jfrog/charts/issues/1895) + ## [103.96.1] - Apr 17, 2024 * Added `rabbitmq.containerSecurityContext.allowPrivilegeEscalation` flag to ensure `RunAsUser` commands cannot bypass their existing sets of permissions. Set to `false` by default * Updated rabbitmq multi-arch tag version to to `3.12.13-debian-11-r0` diff --git a/stable/xray/Chart.yaml b/stable/xray/Chart.yaml index 7b1589e9b..88396957e 100644 --- a/stable/xray/Chart.yaml +++ b/stable/xray/Chart.yaml @@ -24,4 +24,4 @@ name: xray sources: - https://github.com/jfrog/charts type: application -version: 103.96.1 +version: 103.96.2 From 43c7ef8b88086f4b2caffa6dd533a5c0c5d7daf2 Mon Sep 17 00:00:00 2001 From: Rhys Williams <26030558+rhys96@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:32:16 +0100 Subject: [PATCH 3/5] Correct name of sizing file --- stable/xray/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stable/xray/README.md b/stable/xray/README.md index fb953b032..d91648c6b 100644 --- a/stable/xray/README.md +++ b/stable/xray/README.md @@ -52,7 +52,7 @@ helm upgrade --install xray --set xray.joinKey= Date: Thu, 22 Aug 2024 11:22:37 +0530 Subject: [PATCH 4/5] Update CHANGELOG.md --- stable/xray/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stable/xray/CHANGELOG.md b/stable/xray/CHANGELOG.md index ab3170b10..4c6025cfc 100644 --- a/stable/xray/CHANGELOG.md +++ b/stable/xray/CHANGELOG.md @@ -899,4 +899,4 @@ All changes to this chart will be documented in this file. ## [0.4.0] - Aug 22, 2018 * Enabled RBAC support * Added ingress support -* Updated Xray version to 2.2.4 \ No newline at end of file +* Updated Xray version to 2.2.4 From 969d77f73361136b4ebe22c5784f428eeb3a0202 Mon Sep 17 00:00:00 2001 From: Megha Bansal Date: Thu, 22 Aug 2024 11:24:29 +0530 Subject: [PATCH 5/5] Update README.md