From 9a637a9e25f6f1126fe8e682dae5276445cf6b0f Mon Sep 17 00:00:00 2001 From: BorislavG Date: Thu, 12 Apr 2018 13:57:58 +0000 Subject: Fix consul agent start problems Change-Id: I62f394b2608c8ac16c97b90658b0d4fc722659c5 Issue-ID: OOM-913 Signed-off-by: BorislavG --- kubernetes/consul/templates/deployment.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'kubernetes/consul/templates/deployment.yaml') diff --git a/kubernetes/consul/templates/deployment.yaml b/kubernetes/consul/templates/deployment.yaml index 68b23917b6..e984e2a72f 100644 --- a/kubernetes/consul/templates/deployment.yaml +++ b/kubernetes/consul/templates/deployment.yaml @@ -36,11 +36,15 @@ spec: spec: containers: - image: "{{ .Values.repository | default .Values.global.repository }}/{{ .Values.image }}" - command: ["/usr/local/bin/docker-entrypoint.sh"] - args: ["agent","-client","0.0.0.0","-enable-script-checks","-join","{{ .Release.Name }}-{{ index .Values "consul-server" "nameOverride" }}.{{ include "common.namespace" .}}"] + command: + - /bin/sh + - "-c" + - | + cp /tmp/consul/config/* /consul/config + /usr/local/bin/docker-entrypoint.sh agent -client 0.0.0.0 -enable-script-checks -join {{ .Release.Name }}-{{ .Values.consulServer.nameOverride }}.{{ include "common.namespace" .}} name: {{ include "common.name" . }} volumeMounts: - - mountPath: /consul/config + - mountPath: /tmp/consul/config name: consul-agent-config - mountPath: /consul/scripts name: consul-agent-scripts-config -- cgit 1.2.3-korg