Skip to content

Commit

Permalink
Merge pull request #144 from hemsleyk/main
Browse files Browse the repository at this point in the history
Make volume mount hierarchy consistent, implement tickrate
  • Loading branch information
thijsvanloef authored Jan 27, 2024
2 parents 648a1b2 + 537812c commit c1f4800
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion k8s/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ metadata:
name: palworld-settings
data:
PalWorldSettings.ini: >-
[/Script/OnlineSubsystemUtils.IpNetDriver]
NetServerMaxTickRate=60
[/Script/Pal.PalGameWorldSettings]
OptionSettings=(
Expand Down Expand Up @@ -87,4 +90,4 @@ data:
Region="",
bUseAuth=True,
BanListURL="https://api.palworldgame.com/api/banlist.txt"
)
)
6 changes: 3 additions & 3 deletions k8s/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ spec:
volumeMounts:
- mountPath: /palworld
name: datadir
- name: palworld-settings
mountPath: /palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini
- mountPath: /palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini
name: palworld-settings
subPath: PalWorldSettings.ini
volumes:
- name: datadir
persistentVolumeClaim:
claimName: palworld-server-datadir
- name: palworld-settings
configMap:
name: palworld-settings
name: palworld-settings

0 comments on commit c1f4800

Please sign in to comment.