From f0f4c9976b98e4ce73762e506e3bc32cb2b351de Mon Sep 17 00:00:00 2001 From: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> Date: Wed, 14 Feb 2024 16:11:00 -0500 Subject: [PATCH] fix(palworld) fix palworld GAME_PARAMS env (#18246) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** potential fix for GAME_PARAMS. ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [X] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [X] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- charts/stable/palworld/Chart.yaml | 2 +- charts/stable/palworld/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/stable/palworld/Chart.yaml b/charts/stable/palworld/Chart.yaml index 5b560e0e975..64f8c35bb38 100644 --- a/charts/stable/palworld/Chart.yaml +++ b/charts/stable/palworld/Chart.yaml @@ -35,4 +35,4 @@ sources: - https://ghcr.io/ich777/steamcmd - https://hub.docker.com/r/outdead/rcon type: application -version: 1.0.3 +version: 1.0.4 diff --git a/charts/stable/palworld/values.yaml b/charts/stable/palworld/values.yaml index bcdc3de2717..3771296d9fc 100644 --- a/charts/stable/palworld/values.yaml +++ b/charts/stable/palworld/values.yaml @@ -302,7 +302,7 @@ workload: # game SRV_ADMIN_PWD: "{{ .Values.palworld.game.admin_password }}" UPDATE_PUBLIC_IP: "{{ .Values.palworld.game.update_public_ip }}" - GAME_PARAMS: '{{ printf "-port=%s -publicport=%s %s" .Values.service.main.ports.main.port .Values.service.main.ports.main.port (join " " .Values.palworld.game.params) }}' + GAME_PARAMS: '{{ printf "-port=%v -publicport=%v %s" .Values.service.main.ports.main.port .Values.service.main.ports.main.port (join " " .Values.palworld.game.params) }}' GAME_PARAMS_EXTRA: '{{ join " " .Values.palworld.game.params_extra }}' # backup BACKUP: "{{ .Values.palworld.backup.enabled }}"