From d5972cce7777ea06b1f7d96bef71fd59f59cdb69 Mon Sep 17 00:00:00 2001 From: Jonas Schulz Date: Thu, 6 Feb 2025 14:39:33 +0100 Subject: [PATCH] fix(helmfile): Remove default value for domain --- helmfile/environments/default/global.yaml.gotmpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helmfile/environments/default/global.yaml.gotmpl b/helmfile/environments/default/global.yaml.gotmpl index 4ad0d04b..6b8c2b0f 100644 --- a/helmfile/environments/default/global.yaml.gotmpl +++ b/helmfile/environments/default/global.yaml.gotmpl @@ -10,13 +10,15 @@ global: ## Define host # - domain: {{ env "DOMAIN" | default "souvap.cloud" | quote }} + domain: {{ requiredEnv "DOMAIN" | quote }} ## Define mail host + ## If this is unset the "domain" value above should be used in all references # mailDomain: {{ env "MAIL_DOMAIN" | quote }} ## Define synapse host + ## If this is unset the "domain" value above should be used in all references # matrixDomain: {{ env "MATRIX_DOMAIN" | quote }}