Add minecraft vanilla container
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tyler Perkins 2023-12-14 18:58:54 -05:00
parent 5b5bfdd8ba
commit 1e9b35f1c1
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
3 changed files with 55 additions and 0 deletions

View File

@ -15,4 +15,7 @@ spec:
protocol: TCP
port: 27015
targetPort: 27015
- name: minecraft
port: 25565
targetPort: 25565
type: LoadBalancer

View File

@ -0,0 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: factorio-pvc
namespace: games-ns
spec:
accessModes:
- ReadWriteMany
storageClassName: longhorn
resources:
requests:
storage: 16Gi

View File

@ -0,0 +1,40 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: minecraft
namespace: games-ns
spec:
replicas: 1
selector:
matchLabels:
app: games
template:
metadata:
labels:
app: games
spec:
containers:
- name: minecraft
image: itzg/minecraft-server
#env:
ports:
- containerPort: 25565
readinessProbe:
exec:
command: [ "/usr/local/bin/mc-monitor", "status", "--host", "localhost" ]
# Give it i + p * f seconds to be ready, so 120 seconds
initialDelaySeconds: 20
periodSeconds: 5
failureThreshold: 20
livenessProbe:
exec:
command: ["/usr/local/bin/mc-monitor", "status", "--host", "localhost"]
initialDelaySeconds: 120
periodSeconds: 60
volumeMounts:
- name: minecraft-data
mountPath: /data
volumes:
- name: minecraft-data
persistentVolumeClaim:
claimName: minecraft-data-pvc