diff --git a/scripts/helmcharts/openreplay/charts/utilities/templates/efs-cron.yaml b/scripts/helmcharts/openreplay/charts/utilities/templates/efs-cron.yaml index c09c1b65f..b74b0cbad 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/efs-cron.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/efs-cron.yaml @@ -14,6 +14,7 @@ spec: containers: - name: efs-cleaner image: alpine + image: "{{ tpl .Values.efsCleaner.image.repository . }}:{{ .Values.efsCleaner.image.tag | default .Chart.AppVersion }}" command: - /bin/sh - -c diff --git a/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml b/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml index 966a47247..350de8c12 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml @@ -15,7 +15,7 @@ spec: restartPolicy: Never containers: - name: report-cron - image: "{{ tpl .Values.report.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.report.image.repository . }}:{{ .Values.report.image.tag | default .Chart.AppVersion }}-ee" env: - name: LICENSE_KEY value: '{{ .Values.global.enterpriseEditionLicense }}' diff --git a/scripts/helmcharts/openreplay/charts/utilities/templates/sessions-cleaner-cron.yaml b/scripts/helmcharts/openreplay/charts/utilities/templates/sessions-cleaner-cron.yaml index 9313e88af..47246a5bd 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/sessions-cleaner-cron.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/sessions-cleaner-cron.yaml @@ -15,7 +15,7 @@ spec: restartPolicy: Never containers: - name: sessions-cleaner-cron - image: "{{ tpl .Values.sessionsCleaner.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.sessionsCleaner.image.repository . }}:{{ .Values.sessionsCleaner.image.tag | default .Chart.AppVersion }}-ee" env: - name: LICENSE_KEY value: '{{ .Values.global.enterpriseEditionLicense }}' diff --git a/scripts/helmcharts/openreplay/charts/utilities/templates/telemetry-cron.yaml b/scripts/helmcharts/openreplay/charts/utilities/templates/telemetry-cron.yaml index 95fd26188..74d24b624 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/telemetry-cron.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/telemetry-cron.yaml @@ -15,7 +15,7 @@ spec: restartPolicy: Never containers: - name: telemetry-cron - image: "{{ tpl .Values.telemetry.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.telemetry.image.repository . }}:{{ .Values.telemetry.image.tag | default .Chart.AppVersion }}-ee" env: - name: LICENSE_KEY value: '{{ .Values.global.enterpriseEditionLicense }}' diff --git a/scripts/helmcharts/openreplay/charts/utilities/values.yaml b/scripts/helmcharts/openreplay/charts/utilities/values.yaml index 7bfa67523..17caeb5b5 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/values.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/values.yaml @@ -4,9 +4,11 @@ replicaCount: 1 -image: - repository: "{{ .Values.global.openReplayContainerRegistry }}/utilities" - pullPolicy: Always +efsCleaner: + image: + repository: "{{ .Values.global.openReplayContainerRegistry }}/alpine" + pullPolicy: Always + tag: 3.16.1 # Overrides the image tag whose default is the chart appVersion. tag: ""