Skip to content

Commit d744267

Browse files
committed
Update helm chart uninstallation methods
1 parent a1dced5 commit d744267

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

build/charts/yorkie-argocd/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ _See [`helm uninstall`](https://helm.sh/docs/helm/helm_uninstall/) for command d
7676
CRDs created by this chart are not removed by default and should be manually cleaned up:
7777

7878
```bash
79-
kubectl delete crd applications.argoproj.io
80-
kubectl delete crd applicationsets.argoproj.io
81-
kubectl delete crd appprojects.argoproj.io
79+
kubectl get crd -oname | grep --color=never 'argoproj.io' | xargs kubectl delete
8280
```
8381

8482
## Upgrading Chart

build/charts/yorkie-cluster/.helmignore

+3
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@
2121
.idea/
2222
*.tmproj
2323
.vscode/
24+
25+
# Istio Operator
26+
istio-operator.yaml

build/charts/yorkie-cluster/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Installs the yorkie-cluster, which provides cluster mode for Yorkie server to ha
55
## Prerequisites
66

77
- Kubernetes 1.24+
8-
- Istioctl 1.17.1+
8+
- Istioctl 1.17+
99
- Helm 3+
1010

1111
## Install Istio with Istio Operator

build/charts/yorkie-monitoring/README.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,7 @@ _See [`helm uninstall`](https://helm.sh/docs/helm/helm_uninstall/) for command d
8383
CRDs created by this chart are not removed by default and should be manually cleaned up:
8484

8585
```bash
86-
kubectl delete crd alertmanagerconfigs.monitoring.coreos.com
87-
kubectl delete crd alertmanagers.monitoring.coreos.com
88-
kubectl delete crd podmonitors.monitoring.coreos.com
89-
kubectl delete crd probes.monitoring.coreos.com
90-
kubectl delete crd prometheuses.monitoring.coreos.com
91-
kubectl delete crd prometheusrules.monitoring.coreos.com
92-
kubectl delete crd servicemonitors.monitoring.coreos.com
93-
kubectl delete crd thanosrulers.monitoring.coreos.com
86+
kubectl get crd -oname | grep --color=never 'monitoring.coreos.com' | xargs kubectl delete
9487
```
9588

9689
## Upgrading Chart

0 commit comments

Comments
 (0)