summaryrefslogtreecommitdiffstats
path: root/kubernetes/common
diff options
context:
space:
mode:
authorJulien Barbot <julien@barbot.org>2018-11-07 12:47:09 +0100
committerJulien Barbot <julien@barbot.org>2018-11-07 12:47:46 +0100
commitb314f9cc6f5a1f39e1f96cb406f788b1cc451efe (patch)
treee933e4ed5a1a860c20adf6470c4e4cea5d8f4ac0 /kubernetes/common
parent4fabab7c7af8fc6cbf5b60958b60c5b2b277a473 (diff)
music-tomcat: Use "common.repository" framework
Change-Id: Ifb19d7d59f8e0d2057174659ac3beb4f0b781d6d Issue-ID: OOM-874 Signed-off-by: Julien Barbot <julien@barbot.org>
Diffstat (limited to 'kubernetes/common')
-rwxr-xr-xkubernetes/common/music/charts/music-tomcat/templates/deployment.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/common/music/charts/music-tomcat/templates/deployment.yaml b/kubernetes/common/music/charts/music-tomcat/templates/deployment.yaml
index 1fec55caca..2e04b15561 100755
--- a/kubernetes/common/music/charts/music-tomcat/templates/deployment.yaml
+++ b/kubernetes/common/music/charts/music-tomcat/templates/deployment.yaml
@@ -63,7 +63,7 @@ spec:
fieldPath: metadata.namespace
# War Container
- name: "{{ .Chart.Name }}-war"
- image: "{{ .Values.repository }}/{{ .Values.warImage }}"
+ image: "{{ include "common.repository" . }}/{{ .Values.warImage }}"
command: ["cp","/app/MUSIC.war","/webapps"]
imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ports:
@@ -73,7 +73,7 @@ spec:
containers:
# Tomcat Container
- name: "{{ include "common.name" . }}"
- image: "{{ .Values.repository }}/{{ .Values.image }}"
+ image: "{{ include "common.repository" . }}/{{ .Values.image }}"
imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ports:
- containerPort: {{ .Values.service.internalPort }}