diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-02 14:38:07 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-09-02 14:39:16 +0800 |
commit | 14391b41d1cea04544e284f502cc4da2eef69d90 (patch) | |
tree | 4cdfe47381e60571943de9c86e9c42ae4dcf4008 /kubernetes/msb/templates/msb-consul-deployment.yaml | |
parent | d510144fff4875aab873c32de0a103d17d00d37e (diff) |
parameterize docker image
Issue-Id: OOM-113
Change-Id: I36641bbb2c973f3df9a9d1a24e7197c21552e61b
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'kubernetes/msb/templates/msb-consul-deployment.yaml')
-rw-r--r-- | kubernetes/msb/templates/msb-consul-deployment.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kubernetes/msb/templates/msb-consul-deployment.yaml b/kubernetes/msb/templates/msb-consul-deployment.yaml index 1dbbe8fb1b..de33961f8a 100644 --- a/kubernetes/msb/templates/msb-consul-deployment.yaml +++ b/kubernetes/msb/templates/msb-consul-deployment.yaml @@ -16,8 +16,8 @@ spec: hostname: msb-consul containers: - args: - image: consul - name: "msb-consul" + image: {{ .Values.image.consul }} + name: msb-consul ports: - containerPort: {{ .Values.consulPort }} name: msb-consul @@ -26,4 +26,4 @@ spec: port: {{ .Values.consulPort }} initialDelaySeconds: 5 periodSeconds: 10 - imagePullPolicy: "{{ .Values.pullPolicy }}"
\ No newline at end of file + imagePullPolicy: {{ .Values.pullPolicy }}
\ No newline at end of file |