From ba2e52261741008d6da3ed3e6b572efb07b9f2e4 Mon Sep 17 00:00:00 2001 From: art kon Date: Thu, 19 Sep 2019 19:21:53 -0600 Subject: [PATCH] doc: Added some detail on how to use override values in helmfiles section (#861) * Added some detail on how to use override values in helmfiles section Co-Authored-By: KUOKA Yusuke --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa9cb63c..9485504d 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,9 @@ helmfiles: # Override state values values: # Values files merged into the nested state's values - - additiona.values.yaml + - additional.values.yaml + # One important aspect of using values here is that they first need to be defined in the values section + # of the origin helmfile, so in this example key1 needs to be in the values or environments.NAME.values of path/to/subhelmfile.yaml # Inline state values merged into the nested state's values - key1: val1 - # All the nested state files under `helmfiles:` is processed in the order of definition.