From e52343440d81c0596177399058b4711cc0d5da67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Ro=C3=9Fner?= Date: Mon, 17 Jun 2024 14:46:51 +0200 Subject: [PATCH] fix(helmfile): Include all `.yaml.gotmpl` files for the envs in `environments.yaml`. --- docs/requirements.md | 4 +++- helmfile/bases/environments.yaml | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/requirements.md b/docs/requirements.md index e660af33..01affb37 100644 --- a/docs/requirements.md +++ b/docs/requirements.md @@ -76,7 +76,9 @@ openDesk certificate management disabled. # External services -Evaluation the openDesk deployment does not require any external service to start, but features may be limited. +For development and evaluation of openDesk we bundle some service to start with. Be aware that for production +deployments you need to make use of your own production grade services, see the +[external-services.md](./external-services.md) for configuration details. | Group | Type | Version | Tested against | | -------- | ------------------- | ------- | --------------------- | diff --git a/helmfile/bases/environments.yaml b/helmfile/bases/environments.yaml index 5b212664..953f7398 100644 --- a/helmfile/bases/environments.yaml +++ b/helmfile/bases/environments.yaml @@ -10,15 +10,15 @@ environments: values: - "../../environments/default/*.gotmpl" - "../../environments/default/*.yaml" - - "../../environments/dev/values.yaml.gotmpl" + - "../../environments/dev/*.yaml.gotmpl" test: values: - "../../environments/default/*.gotmpl" - "../../environments/default/*.yaml" - - "../../environments/test/values.yaml.gotmpl" + - "../../environments/test/*.yaml.gotmpl" prod: values: - "../../environments/default/*.gotmpl" - "../../environments/default/*.yaml" - - "../../environments/prod/values.yaml.gotmpl" + - "../../environments/prod/*.yaml.gotmpl" ...