1d1ba2b5 by Adam Heath

Improve k8s probe settings.

1 parent a03e83f9
......@@ -82,16 +82,22 @@ spec:
ports:
- name: http-moqui
containerPort: 80
containerPort: 8080
protocol: TCP
livenessProbe:
httpGet:
path: /
path: /status
port: http-moqui
readinessProbe:
httpGet:
path: /
path: /status
port: http-moqui
startupProbe:
httpGet:
path: /status
port: http-moqui
periodSeconds: 10
failureThreshold: 3
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}
......