[FEATURE] Massively increased loading time

This commit is contained in:
Dunemask 2024-01-15 13:07:13 -07:00
parent b989f6efbe
commit 1a79ea7960
13 changed files with 145 additions and 55 deletions

View file

@ -72,12 +72,10 @@ env:
image: itzg/minecraft-server:latest
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
# command: ["mc-health"] # This is super unsafe... but why not :)
command: ["echo"]
failureThreshold: 20
initialDelaySeconds: 5
periodSeconds: 5
exec: { command: [mc-health] }
failureThreshold: 200
initialDelaySeconds: 30
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
name: changeme-name-server
@ -88,15 +86,13 @@ ports:
- containerPort: 25575
name: rcon
protocol: TCP
readinessProbe:
exec:
# command: ["mc-health"] # This is super unsafe... but why not :)
command: ["echo"]
failureThreshold: 20
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
# readinessProbe: # Disabling this allows for users to manipulate files even if the container is starting
# exec: {command: [mc-health]}
# failureThreshold: 200
# initialDelaySeconds: 30
# periodSeconds: 3
# successThreshold: 1
# timeoutSeconds: 1
resources:
requests:
cpu: 500m