Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
849f3ef743
commit
6822c49d3d
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
title: Changelog
|
||||||
|
---
|
||||||
|
|
||||||
|
**Important:**
|
||||||
|
*for the complete changelog, please refer to the website*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [palworld-0.0.1]palworld-0.0.1 (2024-01-24)
|
|
@ -0,0 +1,37 @@
|
||||||
|
annotations:
|
||||||
|
max_scale_version: 23.10.2
|
||||||
|
min_scale_version: 23.10.0
|
||||||
|
truecharts.org/SCALE-support: "true"
|
||||||
|
truecharts.org/category: GameServers
|
||||||
|
truecharts.org/max_helm_version: "3.14"
|
||||||
|
truecharts.org/min_helm_version: "3.12"
|
||||||
|
truecharts.org/train: incubator
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: palworld
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
version: 17.2.26
|
||||||
|
repository: oci://tccr.io/truecharts
|
||||||
|
condition: ""
|
||||||
|
alias: ""
|
||||||
|
tags: []
|
||||||
|
import-values: []
|
||||||
|
deprecated: false
|
||||||
|
description: A custom SteamCMD chart that runs Palworld.
|
||||||
|
home: https://truecharts.org/charts/incubator/palworld
|
||||||
|
icon: https://truecharts.org/img/hotlink-ok/chart-icons/palworld.png
|
||||||
|
keywords:
|
||||||
|
- palworld
|
||||||
|
- GameServers
|
||||||
|
kubeVersion: ">=1.24.0-0"
|
||||||
|
maintainers:
|
||||||
|
- name: TrueCharts
|
||||||
|
email: info@truecharts.org
|
||||||
|
url: https://truecharts.org
|
||||||
|
name: palworld
|
||||||
|
sources:
|
||||||
|
- https://github.com/ich777/docker-steamcmd-server/tree/palworld
|
||||||
|
- https://github.com/truecharts/charts/tree/master/charts/incubator/palworld
|
||||||
|
- https://ghcr.io/ich777/steamcmd
|
||||||
|
type: application
|
||||||
|
version: 0.0.1
|
|
@ -0,0 +1 @@
|
||||||
|
# README
|
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
|
||||||
|
## [palworld-0.0.1]palworld-0.0.1 (2024-01-24)
|
|
@ -0,0 +1,8 @@
|
||||||
|
A custom SteamCMD chart that runs Palworld.
|
||||||
|
|
||||||
|
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/palworld](https://truecharts.org/charts/incubator/palworld)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
TrueCharts can only exist due to the incredible effort of our staff.
|
||||||
|
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
|
@ -0,0 +1,113 @@
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/ich777/steamcmd
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: palworld@sha256:c7ed87dfb13890f340d663ca0a97acb6a8b83a40ab81a9c94c8675cee03af325
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
container:
|
||||||
|
readOnlyRootFilesystem: false
|
||||||
|
runAsUser: 0
|
||||||
|
runAsGroup: 0
|
||||||
|
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
ports:
|
||||||
|
main:
|
||||||
|
protocol: udp
|
||||||
|
port: 8211
|
||||||
|
rcon:
|
||||||
|
enabled: true
|
||||||
|
ports:
|
||||||
|
rcon:
|
||||||
|
enabled: true
|
||||||
|
protocol: tcp
|
||||||
|
port: 25575
|
||||||
|
|
||||||
|
palworld:
|
||||||
|
game:
|
||||||
|
id: "2394010"
|
||||||
|
steam:
|
||||||
|
username: ""
|
||||||
|
password: ""
|
||||||
|
admin:
|
||||||
|
password: adminDocker
|
||||||
|
params:
|
||||||
|
- EpicApp=PalServer
|
||||||
|
params_extra:
|
||||||
|
- -No-useperfthreads
|
||||||
|
- -NoAsyncLoadingThread
|
||||||
|
- -UseMultithreadForDS
|
||||||
|
update_public_ip: false
|
||||||
|
validate: false
|
||||||
|
|
||||||
|
workload:
|
||||||
|
main:
|
||||||
|
podSpec:
|
||||||
|
initContainers:
|
||||||
|
update-config-ini:
|
||||||
|
enabled: true
|
||||||
|
type: init
|
||||||
|
imageSelector: "image"
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
args:
|
||||||
|
- |
|
||||||
|
config=/serverdata/serverfiles/Pal/Saved/Config/LinuxServer
|
||||||
|
cfgFile=${config}/PalWorldSettings.ini
|
||||||
|
mkdir -p ${config}
|
||||||
|
if [ ! -f ${cfgFile} ]; then
|
||||||
|
echo "Config file not found, fetching..."
|
||||||
|
# Fetch the config file if it doesn't exist, just like the container does
|
||||||
|
wget -qO ${cfgFile} https://github.com/ich777/docker-steamcmd-server/raw/palworld/config/PalWorldSettings.ini
|
||||||
|
fi
|
||||||
|
echo "Setting RCON status..."
|
||||||
|
sed -i 's/\(RCONEnabled=\)[^,]*/\1True/g' ${cfgFile}
|
||||||
|
echo "Set to [$(grep -Po 'RCONEnabled=[^,]*' ${cfgFile})]"
|
||||||
|
echo "Setting RCON Port..."
|
||||||
|
sed -i 's/\(RCONPort=\)[^,]*/\1{{ .Values.service.rcon.ports.rcon.port }}/g' ${cfgFile}
|
||||||
|
echo "Set to [$(grep -Po 'RCONPort=[^,]*' ${cfgFile})]"
|
||||||
|
echo "Setting Game Port..."
|
||||||
|
sed -i 's/\(PublicPort=\)[^,]*/\1{{ .Values.service.main.ports.main.port }}/g' ${cfgFile}
|
||||||
|
echo "Set to [$(grep -Po 'PublicPort=[^,]*' ${cfgFile})]"
|
||||||
|
echo "Done!"
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
type: tcp
|
||||||
|
port: "{{ .Values.service.rcon.ports.rcon.port }}"
|
||||||
|
readiness:
|
||||||
|
type: tcp
|
||||||
|
port: "{{ .Values.service.rcon.ports.rcon.port }}"
|
||||||
|
startup:
|
||||||
|
type: tcp
|
||||||
|
port: "{{ .Values.service.rcon.ports.rcon.port }}"
|
||||||
|
env:
|
||||||
|
STEAMCMD_DIR: "{{ .Values.persistence.steamcmd.mountPath }}"
|
||||||
|
SERVER_DIR: "{{ .Values.persistence.serverfiles.targetSelector.main.main.mountPath }}"
|
||||||
|
GAME_ID: "{{ .Values.palworld.game.id }}"
|
||||||
|
SRV_ADMIN_PWD: "{{ .Values.palworld.admin.password }}"
|
||||||
|
GAME_PARAMS: '{{ join " " .Values.palworld.params }}'
|
||||||
|
GAME_PARAMS_EXTRA: '{{ join " " .Values.palworld.params_extra }}'
|
||||||
|
UPDATE_PUBLIC_IP: "{{ .Values.palworld.update_public_ip }}"
|
||||||
|
VALIDATE: "{{ .Values.palworld.validate }}"
|
||||||
|
USERNAME: "{{ .Values.palworld.steam.username }}"
|
||||||
|
PASSWRD: "{{ .Values.palworld.steam.password }}"
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
steamcmd:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /serverdata/steamcmd
|
||||||
|
serverfiles:
|
||||||
|
enabled: true
|
||||||
|
targetSelector:
|
||||||
|
main:
|
||||||
|
main:
|
||||||
|
mountPath: /serverdata/serverfiles
|
||||||
|
update-config-ini:
|
||||||
|
mountPath: /serverdata/serverfiles
|
||||||
|
|
||||||
|
portal:
|
||||||
|
open:
|
||||||
|
enabled: false
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
||||||
|
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1 @@
|
||||||
|
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -0,0 +1,4 @@
|
||||||
|
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/palworld.png
|
||||||
|
categories:
|
||||||
|
- GameServers
|
||||||
|
screenshots: []
|
Loading…
Reference in New Issue