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" ...