prep incubator apps for newer common versions

This commit is contained in:
kjeld Schouten-Lebbing 2021-10-13 23:43:55 +02:00
parent 256af9e373
commit 87feff3a17
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{{- include "common.values.setup" . }}
{{- include "common.setup" . }}
{{/* Append the hardcoded settings */}}
{{- define "icantbelieveitsnotvaletudo.harcodedValues" -}}
@ -27,4 +27,4 @@ service:
{{- $_ := mergeOverwrite .Values (include "icantbelieveitsnotvaletudo.harcodedValues" . | fromYaml) -}}
{{/* Render the templates */}}
{{ include "common.all" . }}
{{ include "common.postSetup" . }}

View File

@ -1,4 +1,4 @@
{{- include "common.values.setup" . }}
{{- include "common.setup" . }}
{{/* Append the hardcoded settings */}}
{{- define "valheim.hardcodedValues" -}}
@ -13,4 +13,4 @@ probes:
{{- $_ := mergeOverwrite .Values (include "valheim.hardcodedValues" . | fromYaml) -}}
{{/* Render the templates */}}
{{ include "common.all" . }}
{{ include "common.postSetup" . }}

View File

@ -1,5 +1,5 @@
{{/* Make sure all variables are set properly */}}
{{- include "common.values.setup" . }}
{{- include "common.setup" . }}
{{/* Append the configMap volume to the volumes */}}
{{- define "zigbee2mqtt.settingsVolume" -}}
@ -14,4 +14,4 @@ volumeSpec:
{{- $_ := set .Values.persistence "zigbee2mqtt-settings" (include "zigbee2mqtt.settingsVolume" . | fromYaml) -}}
{{/* Render the templates */}}
{{ include "common.all" . }}
{{ include "common.postSetup" . }}