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.
This commit is contained in:
Alexandru (Alex) Chirițescu 2020-03-24 18:01:31 +01:00 committed by GitHub
parent 805371544d
commit c5fc9d0364
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ This chart currently installs the non-HA version of ArgoCD.
What was What was
``` ```
controller: server:
extraArgs: extraArgs:
insecure: "" insecure: ""
``` ```
@ -27,7 +27,7 @@ controller:
is now is now
``` ```
controller: server:
extraArgs: extraArgs:
- --insecure - --insecure
``` ```