fix: update argo-cd insecure example in README.md (#279)

* 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.

* Bump chart version
This commit is contained in:
Alexandru (Alex) Chirițescu 2020-04-28 07:22:52 +02:00 committed by GitHub
parent c2d9c81258
commit d0ea218b78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -19,9 +19,8 @@ This chart currently installs the non-HA version of ArgoCD.
`controller.extraArgs`, `repoServer.extraArgs` and `server.extraArgs` are not arrays of strings intead of a map
What was
```yaml
controller:
server:
extraArgs:
insecure: ""
```
@ -29,7 +28,7 @@ controller:
is now
```yaml
controller:
server:
extraArgs:
- --insecure
```