18 lines
537 B
YAML
18 lines
537 B
YAML
{{/* Make sure all variables are set properly */}}
|
|
{{- include "tc.v1.common.loader.init" . -}}
|
|
|
|
{{/* Render configmaps for all pods */}}
|
|
{{- $configmaps := include "palworld.configmaps" . | fromYaml -}}
|
|
{{- if $configmaps -}}
|
|
{{- $_ := mustMergeOverwrite .Values.configmap $configmaps -}}
|
|
{{- end -}}
|
|
|
|
{{/* Disable [rcon] if requested */}}
|
|
{{- if not .Values.palworld.rcon.enabled -}}
|
|
{{- $_ := set .Values.workload.rcon "enabled" false -}}
|
|
{{- end -}}
|
|
|
|
|
|
{{/* Render the templates */}}
|
|
{{- include "tc.v1.common.loader.apply" . -}}
|