From 724b4b36f36e764b3193e0b6167ee46fb3ac3849 Mon Sep 17 00:00:00 2001 From: Nicolas Sterchele Date: Tue, 14 Sep 2021 08:58:53 +0200 Subject: [PATCH] readme: fix wrong paths for environments on conf example (#1885) As we are using "environments" all over the place this allows to add clarity --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ce9b30be..f33e7898 100644 --- a/README.md +++ b/README.md @@ -284,14 +284,14 @@ environments: # That is, the "production" env below is used when and only when it is run like `helmfile --environment production sync`. production: values: - - environment/production/values.yaml + - environments/production/values.yaml - myChartVer: 1.0.0 # disable vault release processing - vault: enabled: false ## `secrets.yaml` is decrypted by `helm-secrets` and available via `{{ .Environment.Values.KEY }}` secrets: - - environment/production/secrets.yaml + - environments/production/secrets.yaml # Instructs helmfile to fail when unable to find a environment values file listed under `environments.NAME.values`. # # Possible values are "Error", "Warn", "Info", "Debug". The default is "Error".