docs(argo-cd): Update README and remove template deps (#1258)

* Update README and remove template deps

Signed-off-by: Marko Bevc <marko@scalefactory.com>

* Update Chart version and amend changelog

Signed-off-by: Marko Bevc <marko@scalefactory.com>

* Update Chart docs and use upstream CDRs

Signed-off-by: Marko Bevc <marko@scalefactory.com>
This commit is contained in:
Marko Bevc 2022-05-04 17:39:10 +01:00 committed by GitHub
parent 0869e629f4
commit b4dbec9994
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 14 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.3.3
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 4.5.8
version: 4.5.9
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
keywords:
@ -21,4 +21,4 @@ dependencies:
condition: redis-ha.enabled
annotations:
artifacthub.io/changes: |
- "[Added]: Document how to upgrade CRDs"
- "[Fix]: Remove version dependencies in README for CRD paths"

View file

@ -86,13 +86,13 @@ Changes in the `CustomResourceDefinition` resources shall be fixed easily by cop
Helm cannot upgrade custom resource definitions [by design](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/#some-caveats-and-explanations).
Please use `kubectl` to upgrade CRDs manually:
Please use `kubectl` to upgrade CRDs manually from [crds](crds/) folder or via the manifests from the upstream project repo:
```sh
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-4.5.8/charts/argo-cd/crds/crd-application.yaml
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-4.5.8/charts/argo-cd/crds/crd-applicationset.yaml
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-4.5.8/charts/argo-cd/crds/crd-extension.yaml
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-4.5.8/charts/argo-cd/crds/crd-project.yaml
```bash
kubectl apply -k https://github.com/argoproj/argo-cd.git/manifests/crds?ref=<appVersion>
# Eg. version v2.3.3
kubectl apply -k https://github.com/argoproj/argo-cd.git/manifests/crds?ref=v2.3.3
```
### 4.3.*

View file

@ -86,13 +86,13 @@ Changes in the `CustomResourceDefinition` resources shall be fixed easily by cop
Helm cannot upgrade custom resource definitions [by design](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/#some-caveats-and-explanations).
Please use `kubectl` to upgrade CRDs manually:
Please use `kubectl` to upgrade CRDs manually from [crds](crds/) folder or via the manifests from the upstream project repo:
```sh
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-{{ template "chart.version" . }}/charts/argo-cd/crds/crd-application.yaml
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-{{ template "chart.version" . }}/charts/argo-cd/crds/crd-applicationset.yaml
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-{{ template "chart.version" . }}/charts/argo-cd/crds/crd-extension.yaml
kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-helm/argo-cd-{{ template "chart.version" . }}/charts/argo-cd/crds/crd-project.yaml
```bash
kubectl apply -k https://github.com/argoproj/argo-cd.git/manifests/crds?ref=<appVersion>
# Eg. version v2.3.3
kubectl apply -k https://github.com/argoproj/argo-cd.git/manifests/crds?ref=v2.3.3
```
### 4.3.*