From 4f64ab4200d474868d788549af418c62c0037eec Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Fri, 1 Jul 2022 16:40:46 +0200 Subject: [PATCH] chore(helm): Ability to override image registry --- .../openreplay/charts/alerts/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/alerts/values.yaml | 2 +- .../openreplay/charts/assets/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/assets/values.yaml | 2 +- .../openreplay/charts/assist/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/assist/values.yaml | 2 +- .../openreplay/charts/chalice/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/chalice/values.yaml | 2 +- .../helmcharts/openreplay/charts/db/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/db/values.yaml | 2 +- .../openreplay/charts/ender/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/ender/values.yaml | 2 +- .../openreplay/charts/frontend/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/frontend/values.yaml | 2 +- .../openreplay/charts/heuristics/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/heuristics/values.yaml | 2 +- .../openreplay/charts/http/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/http/values.yaml | 2 +- .../openreplay/charts/integrations/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/integrations/values.yaml | 2 +- .../openreplay/charts/peers/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/peers/values.yaml | 2 +- .../openreplay/charts/sink/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/sink/values.yaml | 2 +- .../openreplay/charts/storage/templates/deployment.yaml | 4 ++-- scripts/helmcharts/openreplay/charts/storage/values.yaml | 2 +- scripts/helmcharts/openreplay/charts/utilities/values.yaml | 2 +- 27 files changed, 40 insertions(+), 40 deletions(-) diff --git a/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml index f3489ff31..eac304df0 100644 --- a/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/alerts/values.yaml b/scripts/helmcharts/openreplay/charts/alerts/values.yaml index 5df8b27b9..adf9a064f 100644 --- a/scripts/helmcharts/openreplay/charts/alerts/values.yaml +++ b/scripts/helmcharts/openreplay/charts/alerts/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/alerts + repository: "{{ .Values.global.openreplayRepository }}/alerts" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml index 905483d71..ce0c41c99 100644 --- a/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/assets/values.yaml b/scripts/helmcharts/openreplay/charts/assets/values.yaml index 8a9f8211a..4bfe0e2ad 100644 --- a/scripts/helmcharts/openreplay/charts/assets/values.yaml +++ b/scripts/helmcharts/openreplay/charts/assets/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/assets + repository: "{{ .Values.global.openreplayRepository }}/assets" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml index d5a137b0d..2a776ab58 100644 --- a/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/assist/values.yaml b/scripts/helmcharts/openreplay/charts/assist/values.yaml index a256801fb..6a8cae1c5 100644 --- a/scripts/helmcharts/openreplay/charts/assist/values.yaml +++ b/scripts/helmcharts/openreplay/charts/assist/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/assist + repository: "{{ .Values.global.openreplayRepository }}/assist" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml index 44cd3944d..d2aafc35a 100644 --- a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/chalice/values.yaml b/scripts/helmcharts/openreplay/charts/chalice/values.yaml index e9ba4f52b..8eaf0557e 100644 --- a/scripts/helmcharts/openreplay/charts/chalice/values.yaml +++ b/scripts/helmcharts/openreplay/charts/chalice/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/chalice + repository: "{{ .Values.global.openreplayRepository }}/chalice" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml index d5f6e4878..7afbf0e7d 100644 --- a/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/db/values.yaml b/scripts/helmcharts/openreplay/charts/db/values.yaml index 1c385926c..046e8b047 100644 --- a/scripts/helmcharts/openreplay/charts/db/values.yaml +++ b/scripts/helmcharts/openreplay/charts/db/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/db + repository: "{{ .Values.global.openreplayRepository }}/db" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml index 9d6efccb4..368c3ee29 100644 --- a/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/ender/values.yaml b/scripts/helmcharts/openreplay/charts/ender/values.yaml index 1f80ad2d2..c133df3f0 100644 --- a/scripts/helmcharts/openreplay/charts/ender/values.yaml +++ b/scripts/helmcharts/openreplay/charts/ender/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/ender + repository: "{{ .Values.global.openreplayRepository }}/ender" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml index 99b73950e..7a1224e41 100644 --- a/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/frontend/values.yaml b/scripts/helmcharts/openreplay/charts/frontend/values.yaml index aebacae82..cbc8e304d 100644 --- a/scripts/helmcharts/openreplay/charts/frontend/values.yaml +++ b/scripts/helmcharts/openreplay/charts/frontend/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/frontend + repository: "{{ .Values.global.openreplayRepository }}/frontend" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml index 69c498f19..995e8eac2 100644 --- a/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/heuristics/values.yaml b/scripts/helmcharts/openreplay/charts/heuristics/values.yaml index bd59ed0a2..e2ca5d668 100644 --- a/scripts/helmcharts/openreplay/charts/heuristics/values.yaml +++ b/scripts/helmcharts/openreplay/charts/heuristics/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/heuristics + repository: "{{ .Values.global.openreplayRepository }}/heuristics" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml index 1682fbe69..44574d1f8 100644 --- a/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/http/values.yaml b/scripts/helmcharts/openreplay/charts/http/values.yaml index aa95c5f19..a896a8034 100644 --- a/scripts/helmcharts/openreplay/charts/http/values.yaml +++ b/scripts/helmcharts/openreplay/charts/http/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/http + repository: "{{ .Values.global.openreplayRepository }}/http" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml index 1c6a6c6b8..5e63e5153 100644 --- a/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/integrations/values.yaml b/scripts/helmcharts/openreplay/charts/integrations/values.yaml index 054a78d8b..6552866f2 100644 --- a/scripts/helmcharts/openreplay/charts/integrations/values.yaml +++ b/scripts/helmcharts/openreplay/charts/integrations/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/integrations + repository: "{{ .Values.global.openreplayRepository }}/integrations" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml index c7507887d..6f1a379d8 100644 --- a/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/peers/values.yaml b/scripts/helmcharts/openreplay/charts/peers/values.yaml index 44ef464c8..d151a26d4 100644 --- a/scripts/helmcharts/openreplay/charts/peers/values.yaml +++ b/scripts/helmcharts/openreplay/charts/peers/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/peers + repository: "{{ .Values.global.openreplayRepository }}/peers" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml index d6ed8f740..7f7df93b5 100644 --- a/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/sink/values.yaml b/scripts/helmcharts/openreplay/charts/sink/values.yaml index 1534c61fa..91340fdae 100644 --- a/scripts/helmcharts/openreplay/charts/sink/values.yaml +++ b/scripts/helmcharts/openreplay/charts/sink/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/sink + repository: "{{ .Values.global.openreplayRepository }}/sink" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml index d5d247ddd..986f4a6ff 100644 --- a/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml @@ -33,9 +33,9 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.global.enterpriseEditionLicense }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}-ee" {{- else }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.image.repository . }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.healthCheck}} diff --git a/scripts/helmcharts/openreplay/charts/storage/values.yaml b/scripts/helmcharts/openreplay/charts/storage/values.yaml index 37fc2fbec..e2b02e150 100644 --- a/scripts/helmcharts/openreplay/charts/storage/values.yaml +++ b/scripts/helmcharts/openreplay/charts/storage/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/storage + repository: "{{ .Values.global.openreplayRepository }}/storage" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" diff --git a/scripts/helmcharts/openreplay/charts/utilities/values.yaml b/scripts/helmcharts/openreplay/charts/utilities/values.yaml index 6dda897b4..3a256e7af 100644 --- a/scripts/helmcharts/openreplay/charts/utilities/values.yaml +++ b/scripts/helmcharts/openreplay/charts/utilities/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: rg.fr-par.scw.cloud/foss/utilities + repository: "{{ .Values.global.openreplayRepository }}/utilities" pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: ""