Compare commits
48 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 241cf4997b | |||
| bb256c4fd1 | |||
| ad11230327 | |||
| 1b6904b8b2 | |||
| 33c13bd387 | |||
| 1ffbaa9dda | |||
| 49586d9c64 | |||
| 6e50b8cb63 | |||
| 5da9d424d3 | |||
| c443714e26 | |||
| efb47a5800 | |||
| 607ed04e46 | |||
| c56f69513c | |||
| d63183faf3 | |||
| 9c4a5bd6c6 | |||
| 975ba640da | |||
| c60929e37a | |||
| c57fc0a97c | |||
| c3f0c11dcc | |||
| 106ee00a4d | |||
| b47b695f4b | |||
| 270abd81c6 | |||
| f5976016d5 | |||
| 34762012a2 | |||
| e306a09f45 | |||
| a4aadfda8e | |||
| bd6a9ec89f | |||
| 7f3c506d56 | |||
| 60a2e03274 | |||
| 9267512b6a | |||
| ec46ec8550 | |||
| d610844e38 | |||
| bb91efe3ab | |||
| e5381f92b9 | |||
| 263d48152f | |||
| f1440450e8 | |||
| 76ef814ff8 | |||
| 65780191dd | |||
| 24380cf7c0 | |||
| 92a9934ae6 | |||
| b3c01690a9 | |||
| 53470d53ab | |||
| ecd19b12e3 | |||
| 6828389ec0 | |||
| bdef28ae56 | |||
| e21bda8329 | |||
| 726dd6ef78 | |||
| c23d9ebf3e |
@@ -0,0 +1,82 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: wings-7d2d
|
||||||
|
namespace: game-servers
|
||||||
|
labels:
|
||||||
|
app: wings-7d2d
|
||||||
|
game: 7d2d
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: wings-7d2d
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: wings-7d2d
|
||||||
|
game: 7d2d
|
||||||
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
containers:
|
||||||
|
- name: wings
|
||||||
|
image: ghcr.io/pelican-dev/wings:latest
|
||||||
|
env:
|
||||||
|
- name: DOCKER_HOST
|
||||||
|
value: tcp://localhost:2375
|
||||||
|
- name: WINGS_UID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_GID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_PORT
|
||||||
|
value: "8081"
|
||||||
|
- name: WINGS_API_SFTP_PORT
|
||||||
|
value: "2023"
|
||||||
|
- name: WINGS_SERVER_UUID
|
||||||
|
value: "3a8d9bca-1274-4917-b341-67cd5168e2df"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wings-7d2d-config
|
||||||
|
volumeMounts:
|
||||||
|
- name: server-data
|
||||||
|
mountPath: /home/container
|
||||||
|
- name: dind
|
||||||
|
image: docker:24-dind
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
- name: DOCKER_TLS_CERTDIR
|
||||||
|
value: ""
|
||||||
|
volumeMounts:
|
||||||
|
- name: docker-socket
|
||||||
|
mountPath: /var/run
|
||||||
|
- name: game-autostart
|
||||||
|
image: curlimages/curl:latest
|
||||||
|
env:
|
||||||
|
- name: PELICAN_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: pelican-autostart-key
|
||||||
|
key: api_key
|
||||||
|
- name: SERVER_UUID
|
||||||
|
value: "3a8d9bca-1274-4917-b341-67cd5168e2df"
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
echo "Waiting for Wings API to be ready..."
|
||||||
|
while ! curl -sf http://localhost:8081/ready; do
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "Wings ready. Starting game server..."
|
||||||
|
while true; do
|
||||||
|
sleep 60
|
||||||
|
done
|
||||||
|
volumes:
|
||||||
|
- name: docker-socket
|
||||||
|
emptyDir: {}
|
||||||
|
- name: server-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: wings-7d2d-data
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: wings-7d2d-config
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
name: vault-secret-store
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: wings-7d2d-config
|
||||||
|
data:
|
||||||
|
- secretKey: server_uuid
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.7d2d
|
||||||
|
property: server_uuid
|
||||||
|
- secretKey: api_key
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.7d2d
|
||||||
|
property: api_key
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containato.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-7d2d
|
name: wings-7d2d
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: wings-7d2d-data
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 50Gi
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-7d2d-api
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: wings-7d2d
|
||||||
|
ports:
|
||||||
|
- name: api
|
||||||
|
port: 8081
|
||||||
|
targetPort: 8081
|
||||||
|
protocol: TCP
|
||||||
|
- name: sftp
|
||||||
|
port: 2023
|
||||||
|
targetPort: 2023
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-7d2d-game
|
||||||
|
namespace: game-servers
|
||||||
|
annotations:
|
||||||
|
metallb.universe.tf/address-pool: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
loadBalancerIP: 10.4.4.203
|
||||||
|
selector:
|
||||||
|
app: wings-7d2d
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 26900
|
||||||
|
targetPort: 26900
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 26900
|
||||||
|
targetPort: 26900
|
||||||
|
protocol: TCP
|
||||||
@@ -7,7 +7,6 @@ metadata:
|
|||||||
app: wings-ark-sa
|
app: wings-ark-sa
|
||||||
game: ark-sa
|
game: ark-sa
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
|
||||||
strategy:
|
strategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
selector:
|
selector:
|
||||||
@@ -21,101 +20,67 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: amd64
|
kubernetes.io/arch: amd64
|
||||||
affinity:
|
|
||||||
podAntiAffinity:
|
|
||||||
requiredDuringSchedulingIgnoredDuringExecution:
|
|
||||||
- labelSelector:
|
|
||||||
matchExpressions:
|
|
||||||
- key: game
|
|
||||||
operator: In
|
|
||||||
values: [ark-sa]
|
|
||||||
topologyKey: "kubernetes.io/hostname"
|
|
||||||
volumes:
|
|
||||||
- name: wings-config
|
|
||||||
secret:
|
|
||||||
secretName: wings-ark-sa-config
|
|
||||||
- name: game-data
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: wings-ark-sa-data
|
|
||||||
- name: docker-socket
|
|
||||||
emptyDir: {}
|
|
||||||
- name: autostart-token
|
|
||||||
secret:
|
|
||||||
secretName: pelican-autostart-key
|
|
||||||
containers:
|
containers:
|
||||||
- name: dind
|
|
||||||
image: docker:dind
|
|
||||||
args:
|
|
||||||
- "--storage-driver=vfs"
|
|
||||||
- "--iptables=false"
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
volumeMounts:
|
|
||||||
- name: docker-socket
|
|
||||||
mountPath: /var/run/docker.sock
|
|
||||||
env:
|
|
||||||
- name: DOCKER_TLS_CERTDIR
|
|
||||||
value: ""
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "500m"
|
|
||||||
memory: "512Mi"
|
|
||||||
limits:
|
|
||||||
cpu: "1"
|
|
||||||
memory: "1Gi"
|
|
||||||
- name: wings
|
- name: wings
|
||||||
image: ghcr.io/pelican-dev/wings:latest
|
image: ghcr.io/pelican-dev/wings:latest
|
||||||
command:
|
|
||||||
- /bin/sh
|
|
||||||
- -c
|
|
||||||
- |
|
|
||||||
export DOCKER_HOST=tcp://localhost:2375
|
|
||||||
exec wings
|
|
||||||
envFrom:
|
|
||||||
- secretRef:
|
|
||||||
name: wings-ark-sa-config
|
|
||||||
env:
|
env:
|
||||||
- name: DOCKER_HOST
|
- name: DOCKER_HOST
|
||||||
value: tcp://localhost:2375
|
value: tcp://localhost:2375
|
||||||
- name: WATCHDOG_ENABLED
|
- name: WINGS_UID
|
||||||
value: "true"
|
value: "1000"
|
||||||
|
- name: WINGS_GID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_PORT
|
||||||
|
value: "8081"
|
||||||
|
- name: WINGS_API_SFTP_PORT
|
||||||
|
value: "2023"
|
||||||
|
- name: WINGS_SERVER_UUID
|
||||||
|
value: "3fd0b08d-7393-4d0f-b11c-bad5e1d1f771"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wings-ark-sa-config
|
||||||
|
volumeMounts:
|
||||||
|
- name: server-data
|
||||||
|
mountPath: /home/container
|
||||||
|
- name: dind
|
||||||
|
image: docker:24-dind
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
- name: DOCKER_TLS_CERTDIR
|
||||||
|
value: ""
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: wings-config
|
|
||||||
mountPath: /etc/pterodactyl
|
|
||||||
readOnly: true
|
|
||||||
- name: game-data
|
|
||||||
mountPath: /mnt/server
|
|
||||||
- name: docker-socket
|
- name: docker-socket
|
||||||
mountPath: /var/run/docker.sock
|
mountPath: /var/run
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: "2"
|
|
||||||
memory: "4Gi"
|
|
||||||
limits:
|
|
||||||
cpu: "4"
|
|
||||||
memory: "8Gi"
|
|
||||||
- name: game-autostart
|
- name: game-autostart
|
||||||
image: curlimages/curl:latest
|
image: curlimages/curl:latest
|
||||||
|
env:
|
||||||
|
- name: PELICAN_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: pelican-autostart-key
|
||||||
|
key: api_key
|
||||||
|
- name: SERVER_UUID
|
||||||
|
value: "3fd0b08d-7393-4d0f-b11c-bad5e1d1f771"
|
||||||
command:
|
command:
|
||||||
- /bin/sh
|
- /bin/sh
|
||||||
- -c
|
- -c
|
||||||
- |
|
- |
|
||||||
|
echo "Waiting for Wings API to be ready..."
|
||||||
|
while ! curl -sf http://localhost:8081/ready; do
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "Wings ready. Starting game server..."
|
||||||
while true; do
|
while true; do
|
||||||
sleep 60
|
sleep 60
|
||||||
curl -sf -X POST "https://pelican.khalisio.com/api/client/servers/3fd0b08d-7393-4d0f-b11c-bad5e1d1f771/power" \
|
|
||||||
-H "Authorization: Bearer $(cat /etc/secrets/autostart/api_key)" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d '{"signal":"start"}' > /dev/null 2>&1 || true
|
|
||||||
done
|
done
|
||||||
volumeMounts:
|
|
||||||
- name: autostart-token
|
|
||||||
mountPath: /etc/secrets/autostart
|
|
||||||
readOnly: true
|
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: "50m"
|
cpu: 100m
|
||||||
memory: "64Mi"
|
memory: 256Mi
|
||||||
limits:
|
volumes:
|
||||||
cpu: "100m"
|
- name: docker-socket
|
||||||
memory: "128Mi"
|
emptyDir: {}
|
||||||
restartPolicy: Always
|
- name: server-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: wings-ark-sa-data
|
||||||
|
|||||||
@@ -6,21 +6,16 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
refreshInterval: 1h
|
refreshInterval: 1h
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
name: vault
|
name: vault-secret-store
|
||||||
kind: ClusterSecretStore
|
kind: ClusterSecretStore
|
||||||
target:
|
target:
|
||||||
name: wings-ark-sa-config
|
name: wings-ark-sa-config
|
||||||
creationPolicy: Owner
|
|
||||||
data:
|
data:
|
||||||
- secretKey: WINGS_UUID
|
- secretKey: server_uuid
|
||||||
remoteRef:
|
remoteRef:
|
||||||
key: wings/ark-sa
|
key: Talos Cluster/wings.ark-sa
|
||||||
property: uuid
|
property: server_uuid
|
||||||
- secretKey: WINGS_TOKEN
|
- secretKey: api_key
|
||||||
remoteRef:
|
remoteRef:
|
||||||
key: wings/ark-sa
|
key: Talos Cluster/wings.ark-sa
|
||||||
property: token
|
property: api_key
|
||||||
- secretKey: LOCALE
|
|
||||||
remoteRef:
|
|
||||||
key: wings/ark-sa
|
|
||||||
property: locale
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containo.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-ark-sa
|
name: wings-ark-sa
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ metadata:
|
|||||||
name: wings-ark-sa-api
|
name: wings-ark-sa-api
|
||||||
namespace: game-servers
|
namespace: game-servers
|
||||||
spec:
|
spec:
|
||||||
type: ClusterIP
|
selector:
|
||||||
|
app: wings-ark-sa
|
||||||
ports:
|
ports:
|
||||||
- name: api
|
- name: api
|
||||||
port: 8081
|
port: 8081
|
||||||
@@ -14,5 +15,3 @@ spec:
|
|||||||
port: 2023
|
port: 2023
|
||||||
targetPort: 2023
|
targetPort: 2023
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
selector:
|
|
||||||
app: wings-ark-sa
|
|
||||||
|
|||||||
@@ -4,22 +4,22 @@ metadata:
|
|||||||
name: wings-ark-sa-game
|
name: wings-ark-sa-game
|
||||||
namespace: game-servers
|
namespace: game-servers
|
||||||
annotations:
|
annotations:
|
||||||
metallb.universe.tf/address-pool: default-lb-pool
|
metallb.universe.tf/address-pool: default
|
||||||
spec:
|
spec:
|
||||||
type: LoadBalancer
|
type: LoadBalancer
|
||||||
loadBalancerIP: 10.4.4.200
|
loadBalancerIP: 10.4.4.200
|
||||||
ports:
|
|
||||||
- name: ark-game
|
|
||||||
port: 7777
|
|
||||||
protocol: UDP
|
|
||||||
targetPort: 7777
|
|
||||||
- name: ark-query
|
|
||||||
port: 27015
|
|
||||||
protocol: UDP
|
|
||||||
targetPort: 27015
|
|
||||||
- name: ark-tcp
|
|
||||||
port: 27016
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: 27016
|
|
||||||
selector:
|
selector:
|
||||||
app: wings-ark-sa
|
app: wings-ark-sa
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 7777
|
||||||
|
targetPort: 7777
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 7777
|
||||||
|
targetPort: 7777
|
||||||
|
protocol: TCP
|
||||||
|
- name: game-udp2
|
||||||
|
port: 27015
|
||||||
|
targetPort: 27015
|
||||||
|
protocol: UDP
|
||||||
|
|||||||
@@ -0,0 +1,82 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: wings-enshrouded
|
||||||
|
namespace: game-servers
|
||||||
|
labels:
|
||||||
|
app: wings-enshrouded
|
||||||
|
game: enshrouded
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: wings-enshrouded
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: wings-enshrouded
|
||||||
|
game: enshrouded
|
||||||
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
containers:
|
||||||
|
- name: wings
|
||||||
|
image: ghcr.io/pelican-dev/wings:latest
|
||||||
|
env:
|
||||||
|
- name: DOCKER_HOST
|
||||||
|
value: tcp://localhost:2375
|
||||||
|
- name: WINGS_UID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_GID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_PORT
|
||||||
|
value: "8081"
|
||||||
|
- name: WINGS_API_SFTP_PORT
|
||||||
|
value: "2023"
|
||||||
|
- name: WINGS_SERVER_UUID
|
||||||
|
value: "8448d68c-dec4-4025-97fa-9b49e36c75bb"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wings-enshrouded-config
|
||||||
|
volumeMounts:
|
||||||
|
- name: server-data
|
||||||
|
mountPath: /home/container
|
||||||
|
- name: dind
|
||||||
|
image: docker:24-dind
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
- name: DOCKER_TLS_CERTDIR
|
||||||
|
value: ""
|
||||||
|
volumeMounts:
|
||||||
|
- name: docker-socket
|
||||||
|
mountPath: /var/run
|
||||||
|
- name: game-autostart
|
||||||
|
image: curlimages/curl:latest
|
||||||
|
env:
|
||||||
|
- name: PELICAN_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: pelican-autostart-key
|
||||||
|
key: api_key
|
||||||
|
- name: SERVER_UUID
|
||||||
|
value: "8448d68c-dec4-4025-97fa-9b49e36c75bb"
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
echo "Waiting for Wings API to be ready..."
|
||||||
|
while ! curl -sf http://localhost:8081/ready; do
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "Wings ready. Starting game server..."
|
||||||
|
while true; do
|
||||||
|
sleep 60
|
||||||
|
done
|
||||||
|
volumes:
|
||||||
|
- name: docker-socket
|
||||||
|
emptyDir: {}
|
||||||
|
- name: server-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: wings-enshrouded-data
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: wings-enshrouded-config
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
name: vault-secret-store
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: wings-enshrouded-config
|
||||||
|
data:
|
||||||
|
- secretKey: server_uuid
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.enshrouded
|
||||||
|
property: server_uuid
|
||||||
|
- secretKey: api_key
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.enshrouded
|
||||||
|
property: api_key
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containato.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-enshrouded
|
name: wings-enshrouded
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: wings-enshrouded-data
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 50Gi
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-enshrouded-api
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: wings-enshrouded
|
||||||
|
ports:
|
||||||
|
- name: api
|
||||||
|
port: 8081
|
||||||
|
targetPort: 8081
|
||||||
|
protocol: TCP
|
||||||
|
- name: sftp
|
||||||
|
port: 2023
|
||||||
|
targetPort: 2023
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-enshrouded-game
|
||||||
|
namespace: game-servers
|
||||||
|
annotations:
|
||||||
|
metallb.universe.tf/address-pool: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
loadBalancerIP: 10.4.4.204
|
||||||
|
selector:
|
||||||
|
app: wings-enshrouded
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 27015
|
||||||
|
targetPort: 27015
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 27015
|
||||||
|
targetPort: 27015
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: wings-moria
|
||||||
|
namespace: game-servers
|
||||||
|
labels:
|
||||||
|
app: wings-moria
|
||||||
|
game: moria
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: wings-moria
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: wings-moria
|
||||||
|
game: moria
|
||||||
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
containers:
|
||||||
|
- name: wings
|
||||||
|
image: ghcr.io/pelican-dev/wings:latest
|
||||||
|
env:
|
||||||
|
- name: DOCKER_HOST
|
||||||
|
value: tcp://localhost:2375
|
||||||
|
- name: WINGS_UID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_GID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_PORT
|
||||||
|
value: "8081"
|
||||||
|
- name: WINGS_API_SFTP_PORT
|
||||||
|
value: "2023"
|
||||||
|
- name: WINGS_SERVER_UUID
|
||||||
|
value: "8890d0d7-d409-4d87-99dd-f16e2adf3502"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wings-moria-config
|
||||||
|
volumeMounts:
|
||||||
|
- name: server-data
|
||||||
|
mountPath: /home/container
|
||||||
|
- name: dind
|
||||||
|
image: docker:24-dind
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
- name: DOCKER_TLS_CERTDIR
|
||||||
|
value: ""
|
||||||
|
volumeMounts:
|
||||||
|
- name: docker-socket
|
||||||
|
mountPath: /var/run
|
||||||
|
- name: game-autostart
|
||||||
|
image: curlimages/curl:latest
|
||||||
|
env:
|
||||||
|
- name: PELICAN_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: pelican-autostart-key
|
||||||
|
key: api_key
|
||||||
|
- name: SERVER_UUID
|
||||||
|
value: "8890d0d7-d409-4d87-99dd-f16e2adf3502"
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
echo "Waiting for Wings API to be ready..."
|
||||||
|
while ! curl -sf http://localhost:8081/ready; do
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "Wings ready. Starting game server..."
|
||||||
|
while true; do
|
||||||
|
sleep 60
|
||||||
|
done
|
||||||
|
volumes:
|
||||||
|
- name: docker-socket
|
||||||
|
emptyDir: {}
|
||||||
|
- name: server-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: wings-moria-data
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: wings-moria-config
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
name: vault-secret-store
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: wings-moria-config
|
||||||
|
data:
|
||||||
|
- secretKey: server_uuid
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.moria
|
||||||
|
property: server_uuid
|
||||||
|
- secretKey: api_key
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.moria
|
||||||
|
property: api_key
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containato.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-moria
|
name: wings-moria
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: wings-moria-data
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 30Gi
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-moria-api
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: wings-moria
|
||||||
|
ports:
|
||||||
|
- name: api
|
||||||
|
port: 8081
|
||||||
|
targetPort: 8081
|
||||||
|
protocol: TCP
|
||||||
|
- name: sftp
|
||||||
|
port: 2023
|
||||||
|
targetPort: 2023
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-moria-game
|
||||||
|
namespace: game-servers
|
||||||
|
annotations:
|
||||||
|
metallb.universe.tf/address-pool: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
loadBalancerIP: 10.4.4.206
|
||||||
|
selector:
|
||||||
|
app: wings-moria
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 27000
|
||||||
|
targetPort: 27000
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 27000
|
||||||
|
targetPort: 27000
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: wings-palworld
|
||||||
|
namespace: game-servers
|
||||||
|
labels:
|
||||||
|
app: wings-palworld
|
||||||
|
game: palworld
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: wings-palworld
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: wings-palworld
|
||||||
|
game: palworld
|
||||||
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
containers:
|
||||||
|
- name: wings
|
||||||
|
image: ghcr.io/pelican-dev/wings:latest
|
||||||
|
env:
|
||||||
|
- name: DOCKER_HOST
|
||||||
|
value: tcp://localhost:2375
|
||||||
|
- name: WINGS_UID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_GID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_PORT
|
||||||
|
value: "8081"
|
||||||
|
- name: WINGS_API_SFTP_PORT
|
||||||
|
value: "2023"
|
||||||
|
- name: WINGS_SERVER_UUID
|
||||||
|
value: "3b3098ce-97be-4de4-801e-5a9605d9d805"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wings-palworld-config
|
||||||
|
volumeMounts:
|
||||||
|
- name: server-data
|
||||||
|
mountPath: /home/container
|
||||||
|
- name: dind
|
||||||
|
image: docker:24-dind
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
- name: DOCKER_TLS_CERTDIR
|
||||||
|
value: ""
|
||||||
|
volumeMounts:
|
||||||
|
- name: docker-socket
|
||||||
|
mountPath: /var/run
|
||||||
|
- name: game-autostart
|
||||||
|
image: curlimages/curl:latest
|
||||||
|
env:
|
||||||
|
- name: PELICAN_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: pelican-autostart-key
|
||||||
|
key: api_key
|
||||||
|
- name: SERVER_UUID
|
||||||
|
value: "3b3098ce-97be-4de4-801e-5a9605d9d805"
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
echo "Waiting for Wings API to be ready..."
|
||||||
|
while ! curl -sf http://localhost:8081/ready; do
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "Wings ready. Starting game server..."
|
||||||
|
while true; do
|
||||||
|
sleep 60
|
||||||
|
done
|
||||||
|
volumes:
|
||||||
|
- name: docker-socket
|
||||||
|
emptyDir: {}
|
||||||
|
- name: server-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: wings-palworld-data
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: wings-palworld-config
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
name: vault-secret-store
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: wings-palworld-config
|
||||||
|
data:
|
||||||
|
- secretKey: server_uuid
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.palworld
|
||||||
|
property: server_uuid
|
||||||
|
- secretKey: api_key
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.palworld
|
||||||
|
property: api_key
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containato.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-palworld
|
name: wings-palworld
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: wings-palworld-data
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 50Gi
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-palworld-api
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: wings-palworld
|
||||||
|
ports:
|
||||||
|
- name: api
|
||||||
|
port: 8081
|
||||||
|
targetPort: 8081
|
||||||
|
protocol: TCP
|
||||||
|
- name: sftp
|
||||||
|
port: 2023
|
||||||
|
targetPort: 2023
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-palworld-game
|
||||||
|
namespace: game-servers
|
||||||
|
annotations:
|
||||||
|
metallb.universe.tf/address-pool: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
loadBalancerIP: 10.4.4.202
|
||||||
|
selector:
|
||||||
|
app: wings-palworld
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 7777
|
||||||
|
targetPort: 7777
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 7777
|
||||||
|
targetPort: 7777
|
||||||
|
protocol: TCP
|
||||||
|
- name: game-tcp2
|
||||||
|
port: 27015
|
||||||
|
targetPort: 27015
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: wings-satisfactory
|
||||||
|
namespace: game-servers
|
||||||
|
labels:
|
||||||
|
app: wings-satisfactory
|
||||||
|
game: satisfactory
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: wings-satisfactory
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: wings-satisfactory
|
||||||
|
game: satisfactory
|
||||||
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
containers:
|
||||||
|
- name: wings
|
||||||
|
image: ghcr.io/pelican-dev/wings:latest
|
||||||
|
env:
|
||||||
|
- name: DOCKER_HOST
|
||||||
|
value: tcp://localhost:2375
|
||||||
|
- name: WINGS_UID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_GID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_PORT
|
||||||
|
value: "8081"
|
||||||
|
- name: WINGS_API_SFTP_PORT
|
||||||
|
value: "2023"
|
||||||
|
- name: WINGS_SERVER_UUID
|
||||||
|
value: "0dbb44cc-573e-4d64-bac2-3f416085417b"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wings-satisfactory-config
|
||||||
|
volumeMounts:
|
||||||
|
- name: server-data
|
||||||
|
mountPath: /home/container
|
||||||
|
- name: dind
|
||||||
|
image: docker:24-dind
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
- name: DOCKER_TLS_CERTDIR
|
||||||
|
value: ""
|
||||||
|
volumeMounts:
|
||||||
|
- name: docker-socket
|
||||||
|
mountPath: /var/run
|
||||||
|
- name: game-autostart
|
||||||
|
image: curlimages/curl:latest
|
||||||
|
env:
|
||||||
|
- name: PELICAN_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: pelican-autostart-key
|
||||||
|
key: api_key
|
||||||
|
- name: SERVER_UUID
|
||||||
|
value: "0dbb44cc-573e-4d64-bac2-3f416085417b"
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
echo "Waiting for Wings API to be ready..."
|
||||||
|
while ! curl -sf http://localhost:8081/ready; do
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "Wings ready. Starting game server..."
|
||||||
|
while true; do
|
||||||
|
sleep 60
|
||||||
|
done
|
||||||
|
volumes:
|
||||||
|
- name: docker-socket
|
||||||
|
emptyDir: {}
|
||||||
|
- name: server-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: wings-satisfactory-data
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: wings-satisfactory-config
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
name: vault-secret-store
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: wings-satisfactory-config
|
||||||
|
data:
|
||||||
|
- secretKey: server_uuid
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.satisfactory
|
||||||
|
property: server_uuid
|
||||||
|
- secretKey: api_key
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.satisfactory
|
||||||
|
property: api_key
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containato.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-satisfactory
|
name: wings-satisfactory
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: wings-satisfactory-data
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 50Gi
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-satisfactory-api
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: wings-satisfactory
|
||||||
|
ports:
|
||||||
|
- name: api
|
||||||
|
port: 8081
|
||||||
|
targetPort: 8081
|
||||||
|
protocol: TCP
|
||||||
|
- name: sftp
|
||||||
|
port: 2023
|
||||||
|
targetPort: 2023
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-satisfactory-game
|
||||||
|
namespace: game-servers
|
||||||
|
annotations:
|
||||||
|
metallb.universe.tf/address-pool: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
loadBalancerIP: 10.4.4.201
|
||||||
|
selector:
|
||||||
|
app: wings-satisfactory
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 7777
|
||||||
|
targetPort: 7777
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 7777
|
||||||
|
targetPort: 7777
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: wings-sotf
|
||||||
|
namespace: game-servers
|
||||||
|
labels:
|
||||||
|
app: wings-sotf
|
||||||
|
game: sotf
|
||||||
|
spec:
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: wings-sotf
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: wings-sotf
|
||||||
|
game: sotf
|
||||||
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
containers:
|
||||||
|
- name: wings
|
||||||
|
image: ghcr.io/pelican-dev/wings:latest
|
||||||
|
env:
|
||||||
|
- name: DOCKER_HOST
|
||||||
|
value: tcp://localhost:2375
|
||||||
|
- name: WINGS_UID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_GID
|
||||||
|
value: "1000"
|
||||||
|
- name: WINGS_PORT
|
||||||
|
value: "8081"
|
||||||
|
- name: WINGS_API_SFTP_PORT
|
||||||
|
value: "2023"
|
||||||
|
- name: WINGS_SERVER_UUID
|
||||||
|
value: "37d83008-79b1-4495-9f87-09af049dad1c"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: wings-sotf-config
|
||||||
|
volumeMounts:
|
||||||
|
- name: server-data
|
||||||
|
mountPath: /home/container
|
||||||
|
- name: dind
|
||||||
|
image: docker:24-dind
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
- name: DOCKER_TLS_CERTDIR
|
||||||
|
value: ""
|
||||||
|
volumeMounts:
|
||||||
|
- name: docker-socket
|
||||||
|
mountPath: /var/run
|
||||||
|
- name: game-autostart
|
||||||
|
image: curlimages/curl:latest
|
||||||
|
env:
|
||||||
|
- name: PELICAN_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: pelican-autostart-key
|
||||||
|
key: api_key
|
||||||
|
- name: SERVER_UUID
|
||||||
|
value: "37d83008-79b1-4495-9f87-09af049dad1c"
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
echo "Waiting for Wings API to be ready..."
|
||||||
|
while ! curl -sf http://localhost:8081/ready; do
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "Wings ready. Starting game server..."
|
||||||
|
while true; do
|
||||||
|
sleep 60
|
||||||
|
done
|
||||||
|
volumes:
|
||||||
|
- name: docker-socket
|
||||||
|
emptyDir: {}
|
||||||
|
- name: server-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: wings-sotf-data
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: wings-sotf-config
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
name: vault-secret-store
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: wings-sotf-config
|
||||||
|
data:
|
||||||
|
- secretKey: server_uuid
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.sotf
|
||||||
|
property: server_uuid
|
||||||
|
- secretKey: api_key
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.sotf
|
||||||
|
property: api_key
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containato.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-sotf
|
name: wings-sotf
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: wings-sotf-data
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 30Gi
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-sotf-api
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: wings-sotf
|
||||||
|
ports:
|
||||||
|
- name: api
|
||||||
|
port: 8081
|
||||||
|
targetPort: 8081
|
||||||
|
protocol: TCP
|
||||||
|
- name: sftp
|
||||||
|
port: 2023
|
||||||
|
targetPort: 2023
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-sotf-game
|
||||||
|
namespace: game-servers
|
||||||
|
annotations:
|
||||||
|
metallb.universe.tf/address-pool: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
loadBalancerIP: 10.4.4.207
|
||||||
|
selector:
|
||||||
|
app: wings-sotf
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 7778
|
||||||
|
targetPort: 7778
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 7778
|
||||||
|
targetPort: 7778
|
||||||
|
protocol: TCP
|
||||||
@@ -4,9 +4,7 @@ metadata:
|
|||||||
name: wings-valheim
|
name: wings-valheim
|
||||||
namespace: game-servers
|
namespace: game-servers
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: wings
|
app: wings-valheim
|
||||||
app.kubernetes.io/component: game-server
|
|
||||||
app.kubernetes.io/part-of: pelican
|
|
||||||
game: valheim
|
game: valheim
|
||||||
spec:
|
spec:
|
||||||
strategy:
|
strategy:
|
||||||
@@ -37,29 +35,13 @@ spec:
|
|||||||
- name: WINGS_API_SFTP_PORT
|
- name: WINGS_API_SFTP_PORT
|
||||||
value: "2023"
|
value: "2023"
|
||||||
- name: WINGS_SERVER_UUID
|
- name: WINGS_SERVER_UUID
|
||||||
value: "9d09e83d-00c3-4404-07c0522a6c25"
|
value: "9d09e83d-00c3-4404-07c0522a625"
|
||||||
envFrom:
|
envFrom:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: wings-valheim-config
|
name: wings-valheim-config
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: docker-socket
|
|
||||||
mountPath: /var/run/docker.sock
|
|
||||||
- name: wings-data
|
|
||||||
mountPath: /var/lib/wings
|
|
||||||
- name: server-data
|
- name: server-data
|
||||||
mountPath: /mnt/server
|
mountPath: /home/container
|
||||||
readinessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /ready
|
|
||||||
port: 8081
|
|
||||||
initialDelaySeconds: 10
|
|
||||||
periodSeconds: 10
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /health
|
|
||||||
port: 8081
|
|
||||||
initialDelaySeconds: 15
|
|
||||||
periodSeconds: 30
|
|
||||||
- name: dind
|
- name: dind
|
||||||
image: docker:24-dind
|
image: docker:24-dind
|
||||||
securityContext:
|
securityContext:
|
||||||
@@ -70,16 +52,6 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: docker-socket
|
- name: docker-socket
|
||||||
mountPath: /var/run
|
mountPath: /var/run
|
||||||
- name: dind-storage
|
|
||||||
mountPath: /var/lib/docker
|
|
||||||
readinessProbe:
|
|
||||||
exec:
|
|
||||||
command:
|
|
||||||
- sh
|
|
||||||
- -c
|
|
||||||
- '[ -S /var/run/docker.sock ]'
|
|
||||||
initialDelaySeconds: 5
|
|
||||||
periodSeconds: 5
|
|
||||||
- name: game-autostart
|
- name: game-autostart
|
||||||
image: curlimages/curl:latest
|
image: curlimages/curl:latest
|
||||||
env:
|
env:
|
||||||
@@ -89,7 +61,7 @@ spec:
|
|||||||
name: pelican-autostart-key
|
name: pelican-autostart-key
|
||||||
key: api_key
|
key: api_key
|
||||||
- name: SERVER_UUID
|
- name: SERVER_UUID
|
||||||
value: "9d09e83d-00c3-4404-07c0522a6c25"
|
value: "9d09e83d-00c3-4404-07c0522a625"
|
||||||
command:
|
command:
|
||||||
- /bin/sh
|
- /bin/sh
|
||||||
- -c
|
- -c
|
||||||
@@ -101,18 +73,10 @@ spec:
|
|||||||
echo "Wings ready. Starting game server..."
|
echo "Wings ready. Starting game server..."
|
||||||
while true; do
|
while true; do
|
||||||
sleep 60
|
sleep 60
|
||||||
echo "Checking game server status..."
|
|
||||||
done
|
done
|
||||||
volumeMounts:
|
|
||||||
- name: server-data
|
|
||||||
mountPath: /mnt/server
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: docker-socket
|
- name: docker-socket
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
- name: dind-storage
|
|
||||||
emptyDir: {}
|
|
||||||
- name: wings-data
|
|
||||||
emptyDir: {}
|
|
||||||
- name: server-data
|
- name: server-data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: wings-valheim-data
|
claimName: wings-valheim-data
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: external-secrets.io/v1beta1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: wings-valheim-config
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
name: vault-secret-store
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
target:
|
||||||
|
name: wings-valheim-config
|
||||||
|
data:
|
||||||
|
- secretKey: server_uuid
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.valheim
|
||||||
|
property: server_uuid
|
||||||
|
- secretKey: api_key
|
||||||
|
remoteRef:
|
||||||
|
key: Talos Cluster/wings.valheim
|
||||||
|
property: api_key
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.containato.us/v1alpha1
|
||||||
kind: IngressRoute
|
kind: IngressRoute
|
||||||
metadata:
|
metadata:
|
||||||
name: wings-valheim
|
name: wings-valheim
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: wings-valheim-data
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 30Gi
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-valheim-api
|
||||||
|
namespace: game-servers
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: wings-valheim
|
||||||
|
ports:
|
||||||
|
- name: api
|
||||||
|
port: 8081
|
||||||
|
targetPort: 8081
|
||||||
|
protocol: TCP
|
||||||
|
- name: sftp
|
||||||
|
port: 2023
|
||||||
|
targetPort: 2023
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wings-valheim-game
|
||||||
|
namespace: game-servers
|
||||||
|
annotations:
|
||||||
|
metallb.universe.tf/address-pool: default
|
||||||
|
spec:
|
||||||
|
type: LoadBalancer
|
||||||
|
loadBalancerIP: 10.4.4.205
|
||||||
|
selector:
|
||||||
|
app: wings-valheim
|
||||||
|
ports:
|
||||||
|
- name: game-udp
|
||||||
|
port: 2456
|
||||||
|
targetPort: 2456
|
||||||
|
protocol: UDP
|
||||||
|
- name: game-tcp
|
||||||
|
port: 2456
|
||||||
|
targetPort: 2456
|
||||||
|
protocol: TCP
|
||||||
Reference in New Issue
Block a user