Files
palworld-server-docker/k8s/service.yaml
Marco Spreckels ace1b6d4c9 Renaming ports
- 8211-palworld -> server, because its the game/server port
- 27015-palworld -> query, because its the steam query port (https://help.steampowered.com/en/faqs/view/2EA8-4D75-DA21-31EB)

Adding a configmap for PalWorldSettings as a temporary workaround until they can be set via ENV
2024-01-24 18:06:36 +01:00

19 lines
315 B
YAML

apiVersion: v1
kind: Service
metadata:
labels:
app: palworld-server
name: palworld-server
spec:
ports:
- name: server
port: 8211
protocol: UDP
targetPort: server
- name: query
port: 27015
protocol: UDP
targetPort: query
selector:
app: palworld-server
type: LoadBalancer