Skip to content

Commit

Permalink
bump container image
Browse files Browse the repository at this point in the history
  • Loading branch information
bdelwood committed Feb 17, 2024
1 parent b9e32a6 commit 4493364
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions chart/palworld-k8s/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apiVersion: v2
description: A basic chart to deploy Palworld dedicated servers.
name: palworld-k8s
type: application
version: 0.4.1
appVersion: "v0.24.2"
version: 0.5.0
appVersion: "v0.26.0"
kubeVersion: ">=1.26.0-0"
sources:
- https://github.com/bdelwood/palworld-k8s
Expand Down
3 changes: 2 additions & 1 deletion chart/palworld-k8s/README.md
Original file line number Diff line number Diff line change
@@ -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.5.0](https://img.shields.io/badge/Version-0.5.0-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.

Expand Down Expand Up @@ -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. |
Expand Down
1 change: 1 addition & 0 deletions chart/palworld-k8s/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
1 change: 1 addition & 0 deletions chart/palworld-k8s/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4493364

Please sign in to comment.