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 }}