mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-01-06 04:32:43 +00:00
- 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
19 lines
315 B
YAML
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 |