You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EXECUTING USERMOD
usermod: no changes
chown: changing ownership of '/palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini': Read-only file system Checking for new Palworld Server updates
Current Version: 7750307484972290423
The server is up to date! Checking for available container updates
The container is up to date! GENERATING CONFIG
Using Env vars to create PalWorldSettings.ini
/palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini is not writable.
Unable to create /palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I got Problem when apply seetings with configmap
If there is another way to apply setting.ini, please let me know :)
configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: palworld-settings
namespace: chomin
data:
PalWorldSettings.ini: >-
[/Script/Pal.PalGameWorldSettings]
OptionSettings=(
Difficulty=Difficult,
DayTimeSpeedRate=1.000000,
NightTimeSpeedRate=1.000000,
ExpRate=5.000000,
PalCaptureRate=1.000000,
PalSpawnNumRate=2.000000,
PalDamageRateAttack=1.000000,
PalDamageRateDefense=1.000000,
PlayerDamageRateAttack=1.000000,
PlayerDamageRateDefense=1.000000,
PlayerStomachDecreaceRate=0.010000,
PlayerStaminaDecreaceRate=0.010000,
PlayerAutoHPRegeneRate=1.000000,
PlayerAutoHpRegeneRateInSleep=1.000000,
PalStomachDecreaceRate=0.010000,
PalStaminaDecreaceRate=0.010000,
PalAutoHPRegeneRate=1.000000,
PalAutoHpRegeneRateInSleep=1.000000,
BuildObjectDamageRate=1.000000,
BuildObjectDeteriorationDamageRate=1.000000,
CollectionDropRate=1.000000,
CollectionObjectHpRate=1.000000,
CollectionObjectRespawnSpeedRate=0.500000,
EnemyDropItemRate=1.000000,
DeathPenalty=None,
bEnablePlayerToPlayerDamage=False,
bEnableFriendlyFire=False,
bEnableInvaderEnemy=False,
bActiveUNKO=False,
bEnableAimAssistPad=True,
bEnableAimAssistKeyboard=False,
DropItemMaxNum=3000,
DropItemMaxNum_UNKO=100,
BaseCampMaxNum=128,
BaseCampWorkerMaxNum=15,
DropItemAliveMaxHours=1.000000,
bAutoResetGuildNoOnlinePlayers=False,
AutoResetGuildTimeNoOnlinePlayers=72.000000,
GuildPlayerMaxNum=20,
PalEggDefaultHatchingTime=0.100000,
WorkSpeedRate=1.000000,
bIsMultiplay=True,
bIsPvP=False,
bCanPickupOtherGuildDeathPenaltyDrop=False,
bEnableNonLoginPenalty=True,
bEnableFastTravel=True,
bIsStartLocationSelectByMap=True,
bExistPlayerAfterLogout=False,
bEnableDefenseOtherGuildPlayer=False,
CoopPlayerMaxNum=4,
Region="",
bUseAuth=True,
SHOW_PLAYER_LIST=True
BanListURL="https://api.palworldgame.com/api/banlist.txt"
)
Deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: palworld-server
name: palworld-server
namespace: chomin
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app: palworld-server
template:
metadata:
labels:
app: palworld-server
spec:
nodeSelector:
role: pal
containers:
- name: palworld-server
image: thijsvanloef/palworld-server-docker
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8211
name: server
protocol: UDP
- containerPort: 27015
name: query
protocol: UDP
env:
- name: ADMIN_PASSWORD
valueFrom:
secretKeyRef:
name: palworld-secrets
key: rconPassword
envFrom:
- configMapRef:
name: palworld-cm
volumeMounts:
- mountPath: /palworld
name: datadir
- name: palworld-settings
mountPath: /palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini
subPath: PalWorldSettings.ini
readOnly: false
volumes:
- name: datadir
persistentVolumeClaim:
claimName: palworld-server-datadir
- name: palworld-settings
configMap:
name: palworld-settings
defaultMode: 0666
Pod Logs
EXECUTING USERMOD
usermod: no changes
chown: changing ownership of '/palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini': Read-only file system
Checking for new Palworld Server updates
Current Version: 7750307484972290423
The server is up to date!
Checking for available container updates
The container is up to date!
GENERATING CONFIG
Using Env vars to create PalWorldSettings.ini
/palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini is not writable.
Unable to create /palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini
Beta Was this translation helpful? Give feedback.
All reactions