fix(argo-cd): helm3 install does not have flag --name (#1001)
* fix(helm3): install does not have flag --name Signed-off-by: Cyril Corbon <corboncyril@gmail.com> * Update charts/argo-cd/Chart.yaml Co-authored-by: Marko Bevc <marko.bevc@gmail.com> Signed-off-by: Cyril Corbon <corboncyril@gmail.com> Co-authored-by: Marko Bevc <marko.bevc@gmail.com>
This commit is contained in:
parent
e8c59dc079
commit
6fe7f57fb2
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.1.6
|
appVersion: v2.1.6
|
||||||
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: 3.26.4
|
version: 3.26.5
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -21,4 +21,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Update to app version 2.1.6"
|
- "[Changed]: README update to reflect correct helm install syntax"
|
||||||
|
|
|
@ -175,7 +175,7 @@ To install the chart with the release name `my-release`:
|
||||||
$ helm repo add argo https://argoproj.github.io/argo-helm
|
$ helm repo add argo https://argoproj.github.io/argo-helm
|
||||||
"argo" has been added to your repositories
|
"argo" has been added to your repositories
|
||||||
|
|
||||||
$ helm install --name my-release argo/argo-cd
|
$ helm install my-release argo/argo-cd
|
||||||
NAME: my-release
|
NAME: my-release
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
|
@ -176,7 +176,7 @@ To install the chart with the release name `my-release`:
|
||||||
$ helm repo add argo https://argoproj.github.io/argo-helm
|
$ helm repo add argo https://argoproj.github.io/argo-helm
|
||||||
"argo" has been added to your repositories
|
"argo" has been added to your repositories
|
||||||
|
|
||||||
$ helm install --name my-release argo/argo-cd
|
$ helm install my-release argo/argo-cd
|
||||||
NAME: my-release
|
NAME: my-release
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue