41 lines
893 B
YAML
41 lines
893 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: factorio
|
|
namespace: factorio
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: factorio
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: factorio
|
|
spec:
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: workload
|
|
operator: In
|
|
values:
|
|
- Games
|
|
containers:
|
|
- name: factorio
|
|
image: factoriotools/factorio:latest
|
|
ports:
|
|
- containerPort: 34197
|
|
protocol: UDP
|
|
env:
|
|
- name: SERVER_NAME
|
|
value: "UWU-Danta"
|
|
volumeMounts:
|
|
- name: data
|
|
mountPath: /factorio
|
|
volumes:
|
|
- name: data
|
|
persistentVolumeClaim:
|
|
claimName: factorio-data
|