diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-09-29 07:17:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-29 07:17:00 +0000 |
commit | 395d917e08f5864a2b60ea416b8b198093970419 (patch) | |
tree | 74c9cd4df68e492edcdba931502452e2c3428702 | |
parent | d61412dfd0ae723829cbac7dafde941e54c804ca (diff) | |
parent | 3c75b9e575605fa068a8428e4179a6048dc65060 (diff) |
Merge "[DCAEGEN2] Correction of the conditional statement"
-rw-r--r-- | kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml b/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml index 299e3ef878..e0e45c457a 100644 --- a/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml +++ b/kubernetes/dcaegen2/components/dcae-config-binding-service/templates/deployment.yaml @@ -89,7 +89,7 @@ spec: port: {{ .Values.service.secure.internalPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} - {{ end -}} + {{ end }} readinessProbe: httpGet: scheme: "HTTPS" @@ -139,7 +139,7 @@ spec: port: {{ .Values.service.insecure.internalPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} - {{ end -}} + {{ end }} readinessProbe: httpGet: scheme: "HTTP" |