From c5fc9d0364ed811774ec18b775def2504a22553f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandru=20=28Alex=29=20Chiri=C8=9Bescu?= Date: Tue, 24 Mar 2020 18:01:31 +0100 Subject: [PATCH] fix: update argo-cd insecure example in README.md The docs updated in #265 give a wrong example in the README.md on how to configure the `--insecure` flag: it shows it to be done on the controller, when it should be configured on the server. --- charts/argo-cd/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index d4d8a188..db891655 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -19,7 +19,7 @@ This chart currently installs the non-HA version of ArgoCD. What was ``` -controller: +server: extraArgs: insecure: "" ``` @@ -27,7 +27,7 @@ controller: is now ``` -controller: +server: extraArgs: - --insecure ```