From 98ec547f24e595f8979334299ed0f8b48ef8e7d8 Mon Sep 17 00:00:00 2001 From: "Pablo M. Canseco" Date: Wed, 5 Dec 2018 15:03:26 -0700 Subject: [PATCH] update using_helm.md to accurately say that helm install -f only takes a yaml-formatted file. Signed-off-by: Pablo Canseco --- docs/using_helm.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/using_helm.md b/docs/using_helm.md index 914219f28..5318cea78 100755 --- a/docs/using_helm.md +++ b/docs/using_helm.md @@ -215,8 +215,11 @@ You can then override any of these settings in a JSON or YAML formatted file, and then pass that file during installation. ```console -$ echo '{mariadbUser: user0, mariadbDatabase: user0db}' > config.json -$ helm install -f config.json stable/mariadb +$ cat << EOF > config.yaml +mariadbUser: user0 +mariadbDatabase: user0db +EOF +$ helm install -f config.yaml stable/mariadb ``` The above will create a default MariaDB user with the name `user0`, and