summaryrefslogtreecommitdiffstats
path: root/kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2020-04-01 10:02:43 +0000
committerGerrit Code Review <gerrit@onap.org>2020-04-01 10:02:43 +0000
commite64814d1f47f22f362ac705be747e0552f0d4bde (patch)
tree3d5c1f9c812ac99009f2456f9ece7bd258cceef0 /kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml
parenteac393265c9e926a3e18b1d4ede82c5c442eb65a (diff)
parente2c1f3b7778861a70063a532637020a193e43161 (diff)
Merge "Remove all http nodeports from DCAE-DS"
Diffstat (limited to 'kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml')
-rw-r--r--kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml5
1 files changed, 2 insertions, 3 deletions
diff --git a/kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml b/kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml
index e99d65b43b..a70f485153 100644
--- a/kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml
+++ b/kubernetes/sdc/charts/sdc-dcae-fe/templates/deployment.yaml
@@ -65,18 +65,17 @@ spec:
imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ports:
- containerPort: {{ .Values.service.internalPort }}
- - containerPort: {{ .Values.service.internalPort2 }}
{{ if eq .Values.liveness.enabled true }}
livenessProbe:
tcpSocket:
- port: {{ .Values.service.internalPort2 }}
+ port: {{ .Values.service.internalPort }}
initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
periodSeconds: {{ .Values.liveness.periodSeconds }}
{{ end }}
readinessProbe:
httpGet:
path: /dcaed/healthCheck
- port: {{ .Values.service.internalPort2 }}
+ port: {{ .Values.service.internalPort }}
scheme: HTTPS
initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
periodSeconds: {{ .Values.readiness.periodSeconds }}