aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/sdc/charts/sdc-dcae-dt/templates/deployment.yaml
diff options
context:
space:
mode:
authorFuss, Areli (af732p) <areli.fuss@intl.att.com>2020-03-31 19:02:58 +0300
committerOfir Sonsino <os0695@intl.att.com>2020-04-01 09:24:27 +0300
commite2c1f3b7778861a70063a532637020a193e43161 (patch)
tree1becd6ff237c1ed6e5e4cf24abd0edd94e31a18f /kubernetes/sdc/charts/sdc-dcae-dt/templates/deployment.yaml
parent89d26f3bca47b58e769cca7726c18d2a41dfcb66 (diff)
Remove all http nodeports from DCAE-DS
Issue-ID: OOM-2347 Signed-off-by: Fuss, Areli (af732p) <areli.fuss@intl.att.com> Change-Id: I7977425c72bb4d1bc75b2781e38ccc9c254fff4c
Diffstat (limited to 'kubernetes/sdc/charts/sdc-dcae-dt/templates/deployment.yaml')
-rw-r--r--kubernetes/sdc/charts/sdc-dcae-dt/templates/deployment.yaml5
1 files changed, 2 insertions, 3 deletions
diff --git a/kubernetes/sdc/charts/sdc-dcae-dt/templates/deployment.yaml b/kubernetes/sdc/charts/sdc-dcae-dt/templates/deployment.yaml
index 20a6194e99..f3c44f0e54 100644
--- a/kubernetes/sdc/charts/sdc-dcae-dt/templates/deployment.yaml
+++ b/kubernetes/sdc/charts/sdc-dcae-dt/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: /dcae/healthCheckOld
- port: {{ .Values.service.internalPort2 }}
+ port: {{ .Values.service.internalPort }}
scheme: HTTPS
initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
periodSeconds: {{ .Values.readiness.periodSeconds }}