Files
homelab/k8s/games/beam-ng/deployments.yaml

47 lines
1000 B
YAML
Raw Normal View History

2025-07-17 02:37:03 +03:00
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: beam-ng
labels:
app: beam-ng
spec:
selector:
matchLabels:
app: beam-ng
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
template:
metadata:
labels:
app: beam-ng
spec:
nodeSelector:
2025-07-17 02:38:23 +03:00
kubernetes.io/hostname: master.tail2fe2d.ts.net
2025-07-17 02:37:03 +03:00
containers:
- name: beam-ng
image: 'rouhim/beammp-server'
2025-07-18 13:46:54 +03:00
resources:
requests:
memory: "1Gi"
cpu: "500m"
limits:
memory: "4Gi"
cpu: "2000m"
2025-07-17 02:37:03 +03:00
env:
- name: BEAMMP_NAME
value: 'Anal Hexor'
- name: BEAMMP_AUTH_KEY
value: '1488_228'
ports:
- name: udp
containerPort: 30814
protocol: UDP
- containerPort: 30814
name: tcp
protocol: TCP