From e6668e36e329ae99a507dfeff1786d2b8ef7b538 Mon Sep 17 00:00:00 2001 From: Matheus Moraes Date: Fri, 4 Mar 2022 10:16:15 -0300 Subject: [PATCH] update container port and probes --- templates/deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/deployment.yaml b/templates/deployment.yaml index 0ce459e..e0af4e6 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -35,15 +35,15 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http - containerPort: 80 + containerPort: 8080 protocol: TCP livenessProbe: httpGet: - path: / + path: /status/200 port: http readinessProbe: httpGet: - path: / + path: /status/200 port: http resources: {{- toYaml .Values.resources | nindent 12 }}