Skip to content

Commit 724b4b3

Browse files
authored
readme: fix wrong paths for environments on conf example (#1885)
As we are using "environments" all over the place this allows to add clarity
1 parent 2792ef7 commit 724b4b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,14 +284,14 @@ environments:
284284
# That is, the "production" env below is used when and only when it is run like `helmfile --environment production sync`.
285285
production:
286286
values:
287-
- environment/production/values.yaml
287+
- environments/production/values.yaml
288288
- myChartVer: 1.0.0
289289
# disable vault release processing
290290
- vault:
291291
enabled: false
292292
## `secrets.yaml` is decrypted by `helm-secrets` and available via `{{ .Environment.Values.KEY }}`
293293
secrets:
294-
- environment/production/secrets.yaml
294+
- environments/production/secrets.yaml
295295
# Instructs helmfile to fail when unable to find a environment values file listed under `environments.NAME.values`.
296296
#
297297
# Possible values are "Error", "Warn", "Info", "Debug". The default is "Error".

0 commit comments

Comments
 (0)