diff --git a/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml index 6cdbe17b6..f88266e66 100644 --- a/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml @@ -59,9 +59,9 @@ spec: value: '{{ .Values.global.s3.endpoint }}' {{- end }} - name: S3_KEY - value: '{{ .Values.global.s3.accessKey }}' + value: {{ .Values.global.s3.accessKey }} - name: S3_SECRET - value: '{{ .Values.global.s3.secretKey }}' + value: {{ .Values.global.s3.secretKey }} - name: AWS_DEFAULT_REGION value: '{{ .Values.global.s3.region }}' - name: EMAIL_HOST diff --git a/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml index 5df3ee4a8..07977bfe6 100644 --- a/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml @@ -39,9 +39,9 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: AWS_ACCESS_KEY_ID - value: '{{ .Values.global.s3.accessKey }}' + value: {{ .Values.global.s3.accessKey }} - name: AWS_SECRET_ACCESS_KEY - value: '{{ .Values.global.s3.secretKey }}' + value: {{ .Values.global.s3.secretKey }} - name: S3_BUCKET_ASSETS value: '{{ .Values.global.s3.assetsBucket }}' - name: LICENSE_KEY diff --git a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml index 25ec6c387..6282def51 100644 --- a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml @@ -61,9 +61,9 @@ spec: value: '{{ .Values.global.s3.endpoint }}' {{- end}} - name: S3_KEY - value: '{{ .Values.global.s3.accessKey }}' + value: {{ .Values.global.s3.accessKey }} - name: S3_SECRET - value: '{{ .Values.global.s3.secretKey }}' + value: {{ .Values.global.s3.secretKey }} - name: AWS_DEFAULT_REGION value: '{{ .Values.global.s3.region }}' - name: sessions_region diff --git a/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml index 7de2a80c5..8ec91c939 100644 --- a/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml @@ -39,9 +39,9 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: AWS_ACCESS_KEY_ID - value: '{{ .Values.global.s3.accessKey }}' + value: {{ .Values.global.s3.accessKey }} - name: AWS_SECRET_ACCESS_KEY - value: '{{ .Values.global.s3.secretKey }}' + value: {{ .Values.global.s3.secretKey }} - name: AWS_REGION value: '{{ .Values.global.s3.region }}' - name: LICENSE_KEY diff --git a/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml index c5ec92cf4..2ea80f0e4 100644 --- a/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml @@ -39,9 +39,9 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: AWS_ACCESS_KEY_ID - value: '{{ .Values.global.s3.accessKey }}' + value: {{ .Values.global.s3.accessKey }} - name: AWS_SECRET_ACCESS_KEY - value: '{{ .Values.global.s3.secretKey }}' + value: {{ .Values.global.s3.secretKey }} - name: AWS_ENDPOINT value: '{{ .Values.global.s3.endpoint }}' - name: AWS_REGION_WEB diff --git a/scripts/helmcharts/openreplay/charts/utilities/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/utilities/templates/deployment.yaml index 628cda58d..a1b005253 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/deployment.yaml @@ -47,9 +47,9 @@ spec: value: '{{ .Values.global.s3.endpoint }}' {{- end}} - name: S3_KEY - value: "{{ .Values.global.s3.accessKey }}" + value: {{ .Values.global.s3.accessKey }} - name: S3_SECRET - value: "{{ .Values.global.s3.secretKey }}" + value: {{ .Values.global.s3.secretKey }} {{- range $key, $val := .Values.env }} - name: {{ $key }} value: '{{ $val }}'