feat: deploy all 8 Wings instances (ARK SA, 7D2D, Enshrouded, Moria, Palworld, Satisfactory, SOTF, Valheim) #95
@@ -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
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: traefik.containato.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-7d2d
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-7d2d-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-7d2d.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-7d2d-api
|
||||
port: 8081
|
||||
@@ -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
|
||||
game: ark-sa
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
@@ -21,101 +20,67 @@ spec:
|
||||
spec:
|
||||
nodeSelector:
|
||||
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:
|
||||
- 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
|
||||
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:
|
||||
- name: DOCKER_HOST
|
||||
value: tcp://localhost:2375
|
||||
- name: WATCHDOG_ENABLED
|
||||
value: "true"
|
||||
- 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: "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:
|
||||
- name: wings-config
|
||||
mountPath: /etc/pterodactyl
|
||||
readOnly: true
|
||||
- name: game-data
|
||||
mountPath: /mnt/server
|
||||
- name: docker-socket
|
||||
mountPath: /var/run/docker.sock
|
||||
resources:
|
||||
requests:
|
||||
cpu: "2"
|
||||
memory: "4Gi"
|
||||
limits:
|
||||
cpu: "4"
|
||||
memory: "8Gi"
|
||||
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: "3fd0b08d-7393-4d0f-b11c-bad5e1d1f771"
|
||||
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
|
||||
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
|
||||
volumeMounts:
|
||||
- name: autostart-token
|
||||
mountPath: /etc/secrets/autostart
|
||||
readOnly: true
|
||||
resources:
|
||||
requests:
|
||||
cpu: "50m"
|
||||
memory: "64Mi"
|
||||
limits:
|
||||
cpu: "100m"
|
||||
memory: "128Mi"
|
||||
restartPolicy: Always
|
||||
cpu: 100m
|
||||
memory: 256Mi
|
||||
volumes:
|
||||
- name: docker-socket
|
||||
emptyDir: {}
|
||||
- name: server-data
|
||||
persistentVolumeClaim:
|
||||
claimName: wings-ark-sa-data
|
||||
|
||||
@@ -6,21 +6,16 @@ metadata:
|
||||
spec:
|
||||
refreshInterval: 1h
|
||||
secretStoreRef:
|
||||
name: vault
|
||||
name: vault-secret-store
|
||||
kind: ClusterSecretStore
|
||||
target:
|
||||
name: wings-ark-sa-config
|
||||
creationPolicy: Owner
|
||||
data:
|
||||
- secretKey: WINGS_UUID
|
||||
- secretKey: server_uuid
|
||||
remoteRef:
|
||||
key: wings/ark-sa
|
||||
property: uuid
|
||||
- secretKey: WINGS_TOKEN
|
||||
key: Talos Cluster/wings.ark-sa
|
||||
property: server_uuid
|
||||
- secretKey: api_key
|
||||
remoteRef:
|
||||
key: wings/ark-sa
|
||||
property: token
|
||||
- secretKey: LOCALE
|
||||
remoteRef:
|
||||
key: wings/ark-sa
|
||||
property: locale
|
||||
key: Talos Cluster/wings.ark-sa
|
||||
property: api_key
|
||||
|
||||
@@ -1,27 +1,17 @@
|
||||
apiVersion: traefik.containo.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-ark-sa-api
|
||||
name: wings-ark-sa
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-ark-sa-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-ark-sa.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-ark-sa-api
|
||||
port: 8081
|
||||
scheme: https
|
||||
serversTransport: wings-ark-sa-st
|
||||
---
|
||||
apiVersion: traefik.io/v1alpha1
|
||||
kind: ServersTransport
|
||||
metadata:
|
||||
name: wings-ark-sa-st
|
||||
namespace: game-servers
|
||||
spec:
|
||||
serverTransport:
|
||||
insecureSkipVerify: true
|
||||
|
||||
@@ -4,7 +4,8 @@ metadata:
|
||||
name: wings-ark-sa-api
|
||||
namespace: game-servers
|
||||
spec:
|
||||
type: ClusterIP
|
||||
selector:
|
||||
app: wings-ark-sa
|
||||
ports:
|
||||
- name: api
|
||||
port: 8081
|
||||
@@ -14,5 +15,3 @@ spec:
|
||||
port: 2023
|
||||
targetPort: 2023
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: wings-ark-sa
|
||||
|
||||
@@ -4,22 +4,22 @@ metadata:
|
||||
name: wings-ark-sa-game
|
||||
namespace: game-servers
|
||||
annotations:
|
||||
metallb.universe.tf/address-pool: default-lb-pool
|
||||
metallb.universe.tf/address-pool: default
|
||||
spec:
|
||||
type: LoadBalancer
|
||||
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:
|
||||
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
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: traefik.containato.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-enshrouded
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-enshrouded-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-enshrouded.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-enshrouded-api
|
||||
port: 8081
|
||||
@@ -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
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: traefik.containato.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-moria
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-moria-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-moria.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-moria-api
|
||||
port: 8081
|
||||
@@ -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
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: traefik.containato.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-palworld
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-palworld-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-palworld.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-palworld-api
|
||||
port: 8081
|
||||
@@ -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
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: traefik.containato.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-satisfactory
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-satisfactory-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-satisfactory.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-satisfactory-api
|
||||
port: 8081
|
||||
@@ -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
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: traefik.containato.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-sotf
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-sotf-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-sotf.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-sotf-api
|
||||
port: 8081
|
||||
@@ -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
|
||||
@@ -0,0 +1,82 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: wings-valheim
|
||||
namespace: game-servers
|
||||
labels:
|
||||
app: wings-valheim
|
||||
game: valheim
|
||||
spec:
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
matchLabels:
|
||||
app: wings-valheim
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: wings-valheim
|
||||
game: valheim
|
||||
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: "9d09e83d-00c3-4404-07c0522a625"
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: wings-valheim-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: "9d09e83d-00c3-4404-07c0522a625"
|
||||
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-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
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: traefik.containato.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: wings-valheim
|
||||
namespace: game-servers
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
tls:
|
||||
secretName: wings-valheim-tls
|
||||
certResolver: letsencrypt
|
||||
routes:
|
||||
- match: Host(`wings-valheim.khalisio.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: wings-valheim-api
|
||||
port: 8081
|
||||
@@ -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