- Added support to the new server environment variables;

This commit is contained in:
Filipe Souza
2024-01-28 15:11:03 -03:00
parent 8f15e09ef7
commit d1a3211d81
5 changed files with 33 additions and 8 deletions

View File

@@ -37,4 +37,10 @@ data:
SERVER_NAME: {{ regexReplaceAll "\\W+" .Values.server.config.server_name "_" }}
{{ else }}
SERVER_NAME: {{ printf "%s_%s" "palworld" (randAlphaNum 6 | nospace) }}
{{ end }}
{{ end }}
TZ: {{ .Values.server.config.timezone }}
PUBLIC_IP: {{ .Values.server.config.public_ip | quote }}
PUBLIC_PORT: {{ .Values.server.config.public_port | quote }}
SERVER_DESCRIPTION: {{ .Values.server.config.server_description }}
UPDATE_ON_BOOT: {{ .Values.server.config.update_on_boot | quote }}
QUERY_PORT: {{ .Values.server.config.query_port | quote }}