
SERIES
Prioritizing speed over quality will inevitably have an immediate and detrimental impact on executing the value proposition. This frustration spreads throughout the organization, damaging trust and the reputation of the engineering team and the organization as a whole.
by @mateothegreat Jul 12, 2024
Series
Minecraft on Kubernetes
Like this series?
Not a subscriber yet?
Make it yours!
Infrastructure diagram
The docker image
Learn more about itzg docker containers at https://docker-minecraft-server.readthedocs.io/en/latest.
A StatefulSet is a set of pods with a unique, persistent hostname and ID. StatefulSets are designed to run stateful applications in Kubernetes with dedicated persistent storage. A StatefulSet is a set of pods with a unique, persistent hostname and ID. StatefulSets are designed to run stateful applications in Kubernetes with dedicated persistent storage. A StatefulSet is a set of pods with a unique, persistent hostname and ID. StatefulSets are designed to run stateful applications in Kubernetes with dedicated persistent storage.
StatefulSet Object Example
asdf
1apiVersion: apps/v12kind: StatefulSet3metadata:4 name: mc15 namespace: mincraft-servers6spec:7 replicas: 18 selector:9 matchLabels:10 app: mc-server11 template:12 metadata:13 labels:14 app: mc-server15 spec:16 containers:17 - name: mc-server18 image: itzg/minecraft-server19 ports:20 - containerPort: 2556521 name: minecraft22 env:23 - name: EULA24 value: "true"25 volumeMounts:26 - name: mc-data27 mountPath: /data28 volumes:29 - name: mc-data30 persistentVolumeClaim:31 claimName: mc-data-pvc
Matthew Davis - Principal Software Architect 🙏
All rights reserved © 2024 Matthew Davis
Send me deets!
Get an update on new posts and events.
I promise, no spam of shady business!