From 885cdfa70dff75c71d12de4998510b777bfaa456 Mon Sep 17 00:00:00 2001 From: Brodi Elwood Date: Sat, 17 Feb 2024 18:12:30 -0500 Subject: [PATCH] bump container image --- chart/palworld-k8s/Chart.yaml | 2 +- chart/palworld-k8s/README.md | 3 ++- chart/palworld-k8s/templates/configmap.yaml | 1 + chart/palworld-k8s/values.yaml | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/chart/palworld-k8s/Chart.yaml b/chart/palworld-k8s/Chart.yaml index d4233ad..a319165 100644 --- a/chart/palworld-k8s/Chart.yaml +++ b/chart/palworld-k8s/Chart.yaml @@ -4,7 +4,7 @@ description: A basic chart to deploy Palworld dedicated servers. name: palworld-k8s type: application version: 0.4.1 -appVersion: "v0.24.2" +appVersion: "v0.26.0" kubeVersion: ">=1.26.0-0" sources: - https://github.com/bdelwood/palworld-k8s diff --git a/chart/palworld-k8s/README.md b/chart/palworld-k8s/README.md index 3cb9838..0160431 100644 --- a/chart/palworld-k8s/README.md +++ b/chart/palworld-k8s/README.md @@ -1,6 +1,6 @@ # palworld-k8s -![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.24.2](https://img.shields.io/badge/AppVersion-v0.24.2-informational?style=flat-square) +![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.26.0](https://img.shields.io/badge/AppVersion-v0.26.0-informational?style=flat-square) A basic chart to deploy Palworld dedicated servers. @@ -32,6 +32,7 @@ Kubernetes: `>=1.26.0-0` | gameServer.community.enabled | bool | `false` | Enable if you want your server to show up as a community server. | | gameServer.community.service.nodePort | int | `nil` | Node port a community server (for NodePort service type). | | gameServer.community.service.port | int | `27015` | Service port for a community server. | +| gameServer.disable_generate_settings | bool | `false` | | | gameServer.existingSecret | string | `""` | Name of an existing secret for the server password. | | gameServer.multithreading | bool | `true` | Enable multithreading. | | gameServer.password | string | `""` | Server password If one is not provided or an existing secret it not provided, one will be generated. | diff --git a/chart/palworld-k8s/templates/configmap.yaml b/chart/palworld-k8s/templates/configmap.yaml index d93ae6b..5746b1b 100644 --- a/chart/palworld-k8s/templates/configmap.yaml +++ b/chart/palworld-k8s/templates/configmap.yaml @@ -25,6 +25,7 @@ data: AUTO_REBOOT_CRON_EXPRESSION: "{{ .Values.gameServer.auto_reboot.cron_expression }}" AUTO_REBOOT_ENABLED: "{{ .Values.gameServer.auto_reboot.enabled }}" AUTO_REBOOT_WARN_MINUTES: "{{ .Values.gameServer.auto_reboot.warn_minutes }}" + DISABLE_GENERATE_SETTINGS: "{{ .Values.gameServer.disable_generate_settings }}" {{- if .Values.gameServer.world_parameters }} {{- with .Values.gameServer.world_parameters }} {{- toYaml . | nindent 2 }} diff --git a/chart/palworld-k8s/values.yaml b/chart/palworld-k8s/values.yaml index ac7b2c2..8fcb523 100644 --- a/chart/palworld-k8s/values.yaml +++ b/chart/palworld-k8s/values.yaml @@ -145,6 +145,7 @@ gameServer: cron_expression: "0 0 * * *" # -- Time, in minutes, to send a server message to warn users before a reboot. warn_minutes: 5 + disable_generate_settings: false # -- Define extra environment variables to pass directly to the container. # Any env vars which are set by other values will be overridden.