From c4b35b746599eda775d6794ae91cf54a8548a547 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Mon, 24 Apr 2023 12:08:52 +0200 Subject: [PATCH] chore(helm): Override image pull policy (#1199) --- .../openreplay/charts/utilities/templates/report-cron.yaml | 1 + .../charts/utilities/templates/sessions-cleaner-cron.yaml | 1 + .../openreplay/charts/utilities/templates/telemetry-cron.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml b/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml index b3f258df4..c0606b0a9 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/report-cron.yaml @@ -27,6 +27,7 @@ spec: containers: - name: report-cron image: "{{ tpl .Values.report.image.repository . }}:{{ .Values.report.image.tag | default .Chart.AppVersion }}-ee" + imagePullPolicy: "{{ .Values.report.image.pullPolicy}}" 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 d724d44cc..fba69721b 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/sessions-cleaner-cron.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/sessions-cleaner-cron.yaml @@ -27,6 +27,7 @@ spec: containers: - name: sessions-cleaner-cron image: "{{ tpl .Values.sessionsCleaner.image.repository . }}:{{ .Values.sessionsCleaner.image.tag | default .Chart.AppVersion }}-ee" + imagePullPolicy: {{ .Values.sessionsCleaner.image.pullPolicy }} 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 2ada4cd10..5db6e6a4a 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/templates/telemetry-cron.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/templates/telemetry-cron.yaml @@ -27,6 +27,7 @@ spec: containers: - name: telemetry-cron image: "{{ tpl .Values.telemetry.image.repository . }}:{{ .Values.telemetry.image.tag | default .Chart.AppVersion }}-ee" + imgePullPolicy: {{ .Values.telemetry.image.pullPolicy }} env: - name: LICENSE_KEY value: '{{ .Values.global.enterpriseEditionLicense }}'