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:
parent
c2d9c81258
commit
d0ea218b78
2 changed files with 3 additions and 4 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "1.5.2"
|
appVersion: "1.5.2"
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 2.2.9
|
version: 2.2.10
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -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
|
`controller.extraArgs`, `repoServer.extraArgs` and `server.extraArgs` are not arrays of strings intead of a map
|
||||||
|
|
||||||
What was
|
What was
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
controller:
|
server:
|
||||||
extraArgs:
|
extraArgs:
|
||||||
insecure: ""
|
insecure: ""
|
||||||
```
|
```
|
||||||
|
@ -29,7 +28,7 @@ controller:
|
||||||
is now
|
is now
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
controller:
|
server:
|
||||||
extraArgs:
|
extraArgs:
|
||||||
- --insecure
|
- --insecure
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue