1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-14 11:58:04 +00:00

docs(kubernetes): Add probes to example

This commit is contained in:
TwiN 2022-05-25 23:59:34 -04:00
parent 5b1aeaeb0c
commit cff06e38cb

View file

@ -54,10 +54,10 @@ spec:
app: gatus app: gatus
template: template:
metadata: metadata:
labels:
app: gatus
name: gatus name: gatus
namespace: kube-system namespace: kube-system
labels:
app: gatus
spec: spec:
serviceAccountName: gatus serviceAccountName: gatus
terminationGracePeriodSeconds: 5 terminationGracePeriodSeconds: 5
@ -76,6 +76,22 @@ spec:
requests: requests:
cpu: 50m cpu: 50m
memory: 30M memory: 30M
readinessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
failureThreshold: 5
volumeMounts: volumeMounts:
- mountPath: /config - mountPath: /config
name: gatus-config name: gatus-config