diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-06-02 11:50:12 +0200 |
---|---|---|
committer | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-06-02 11:50:12 +0200 |
commit | 1b6861577c9b0a67e14ce70b1ddecc2e70db88ca (patch) | |
tree | 69a26a61e87e9df25b4ab4ddc38a47635957c6f5 /kubernetes/common/certInitializer/templates | |
parent | 6218d1db2445faa4261f53925b2224a91e4de6e1 (diff) |
[common] Make sure that we declare repository in certInitializer
Not all components declare repository in the global section which may
lead to some error when processing just a single component instead of
whole onap. To avoid this let's make sure that cerInitializer sets
repository url internally.
Issue-ID: OOM-2416
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
Change-Id: I4fd2a235b188c7ee09d0173dbaa873141187a077
Diffstat (limited to 'kubernetes/common/certInitializer/templates')
-rw-r--r-- | kubernetes/common/certInitializer/templates/_certInitializer.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/common/certInitializer/templates/_certInitializer.yaml b/kubernetes/common/certInitializer/templates/_certInitializer.yaml index eddc7bc124..9c744f39ba 100644 --- a/kubernetes/common/certInitializer/templates/_certInitializer.yaml +++ b/kubernetes/common/certInitializer/templates/_certInitializer.yaml @@ -61,7 +61,7 @@ apiVersion: v1 fieldPath: metadata.namespace - name: {{ include "common.name" $dot }}-aaf-config - image: {{ (default $subchartDot.Values.repository $subchartDot.Values.global.repository) }}/{{ $subchartDot.Values.global.aafAgentImage }} + image: {{ include "common.repository" $subchartDot }}/{{ $subchartDot.Values.global.aafAgentImage }} imagePullPolicy: {{ $subchartDot.Values.global.pullPolicy | default $subchartDot.Values.pullPolicy }} volumeMounts: - mountPath: {{ $initRoot.mountPath }} |