diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-11-03 18:02:39 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-11-03 18:02:39 +0100 |
commit | 3e4f9ed2169cad8a9fe97b8b75076568d28a5a28 (patch) | |
tree | 156652e85f5d5f01ca8269a756c11991f221703a | |
parent | d055a17d87b9e6bbfde51f523eea1838bc6b40dd (diff) |
[SO] don't use SO repositoryOverride for soHelper
soHelper is currently using repositoryOverride value of SO in the
templates, making SO gating very hard.
This commit prevents that (it's always possible to use the same
repository by setting repositoryOverride on soHelper)
Issue-ID: OOM-2617
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I88ce702b04242d7f4244698bce3114a1303394cd
-rw-r--r-- | kubernetes/so/components/soHelpers/templates/_certificates.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/so/components/soHelpers/templates/_certificates.tpl b/kubernetes/so/components/soHelpers/templates/_certificates.tpl index 98876e3cea..d148a1cd60 100644 --- a/kubernetes/so/components/soHelpers/templates/_certificates.tpl +++ b/kubernetes/so/components/soHelpers/templates/_certificates.tpl @@ -5,7 +5,7 @@ {{ include "common.certInitializer.initContainer" $subchartDot }} {{- if $dot.Values.global.aafEnabled }} - name: {{ include "common.name" $dot }}-msb-cert-importer - image: "{{ include "common.repository" $dot }}/{{ $dot.Values.global.aafAgentImage }}" + image: "{{ include "common.repository" $subchartDot }}/{{ $dot.Values.global.aafAgentImage }}" imagePullPolicy: {{ $dot.Values.global.pullPolicy | default $subchartDot.Values.pullPolicy }} command: - "/bin/sh" |