[FIX] Fixed Chonky styling & abused liveness & readiness probes

This commit is contained in:
Dunemask 2023-12-26 12:26:16 -07:00
parent d967f6b29c
commit 3cd9577cbf
7 changed files with 58 additions and 51 deletions

View file

@ -73,10 +73,10 @@ image: itzg/minecraft-server:latest
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
command:
- mc-health
# command: ["mc-health"] # This is super unsafe... but why not :)
command: ["echo"]
failureThreshold: 20
initialDelaySeconds: 30
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
@ -90,10 +90,10 @@ ports:
protocol: TCP
readinessProbe:
exec:
command:
- mc-health
# command: ["mc-health"] # This is super unsafe... but why not :)
command: ["echo"]
failureThreshold: 20
initialDelaySeconds: 30
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1