diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-11-21 22:30:52 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-12-01 13:28:57 +0100 |
commit | 2628ad97ce8e9928b657e111042415941f7efa41 (patch) | |
tree | 24c1c3e5a3295cdcab690b718ffac1bbb6a26b31 /kubernetes/cli/templates | |
parent | b2188514ae53ca61abb7d7cc90279279cb489301 (diff) |
[CLI] Uses new tpls for repos / images
This commit makes CLI chart to use the new generator for repositories and
images.
Issue-ID: OOM-2364
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I8495ee50765eccfd25802ff23b1744ea356bb7b2
Diffstat (limited to 'kubernetes/cli/templates')
-rw-r--r-- | kubernetes/cli/templates/deployment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/cli/templates/deployment.yaml b/kubernetes/cli/templates/deployment.yaml index 0823daffb6..74b2d2df37 100644 --- a/kubernetes/cli/templates/deployment.yaml +++ b/kubernetes/cli/templates/deployment.yaml @@ -37,7 +37,7 @@ spec: spec: containers: - name: {{ include "common.name" . }} - image: "{{ include "common.repository" . }}/{{ .Values.image }}" + image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} ports: - containerPort: {{ .Values.service.internalPort }} |