diff options
author | kj <keren.joseph@amdocs.com> | 2018-03-28 18:10:32 +0300 |
---|---|---|
committer | kj <keren.joseph@amdocs.com> | 2018-03-28 18:15:20 +0300 |
commit | 8bc9a7ca202e417cd82b1fd639c11a4a2daf6a56 (patch) | |
tree | 59a40e8282609e660f8b6945a176a17fdba869ec /charts/champ | |
parent | f8d8ce1c0bf1797dab83a47766addf901c4dd150 (diff) |
champ and gizmo hotfix
fixes added sue to yaml validation issues
Issue-ID: OOM-836
Change-Id: I9e03d85526ee9e6d5fbd893011db6ff15f95b74f
Signed-off-by: kj <keren.joseph@amdocs.com>
Diffstat (limited to 'charts/champ')
-rw-r--r-- | charts/champ/templates/deployment.yaml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/charts/champ/templates/deployment.yaml b/charts/champ/templates/deployment.yaml index a1a1d0a..23314ae 100644 --- a/charts/champ/templates/deployment.yaml +++ b/charts/champ/templates/deployment.yaml @@ -38,13 +38,13 @@ spec: - containerPort: {{ .Values.service.internalPort }} # disable liveness probe when breakpoints set in debugger # so K8s doesn't restart unresponsive container - {{- if eq .Values.liveness.enabled true }} + {{ if .Values.liveness.enabled }} livenessProbe: tcpSocket: port: {{ .Values.service.internalPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} - {{ end -}} + {{ end }} readinessProbe: tcpSocket: port: {{ .Values.service.internalPort }} @@ -86,7 +86,6 @@ spec: - name: localtime hostPath: path: /etc/localtime - readOnly: true - name: {{ include "common.fullname" . }}-config configMap: name: {{ include "common.fullname" . }}-configmap |