Added new endpoints

This commit is contained in:
simonmicro 2023-03-15 23:00:06 +01:00
parent 32b6623c2b
commit dfbeee6754
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6

View file

@ -45,14 +45,17 @@ spec:
- name: http - name: http
containerPort: 8080 containerPort: 8080
protocol: TCP protocol: TCP
startupProbe:
httpGet:
port: http
path: /readyz
failureThreshold: 30 # 30 seconds seem to be enough under heavy workloads
periodSeconds: 1
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /livez
port: http
readinessProbe:
httpGet:
path: /
port: http port: http
periodSeconds: 20
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}