Skip to content

Commit

Permalink
Minor updates and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
oskar-s9s committed Apr 19, 2024
1 parent 7fe89ba commit 9aa3642
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/clustercontrol/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A ClusterControl Helm Chart for Kubernetes

type: application

version: 2024.04.3
version: 2024.04.4
appVersion: "1.9.8"

dependencies:
Expand All @@ -23,5 +23,5 @@ dependencies:
alias: monitoring
- name: nginx-ingress-controller
repository: https://charts.bitnami.com/bitnami
version: 11.0.0
version: 11.1.0
condition: ingressController.enabled
21 changes: 21 additions & 0 deletions charts/clustercontrol/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,24 @@ prometheusHostname: my-prometheus-server
monitoring:
enabled: false
```

## Uninstall
To uninstall ClusterControl from your kubernetes cluster simply run
```
helm uninstall clustercontrol
```

### Persistent resources
You might need to delete pvc created for the innodb database cluster manually.
To do so, simply run
```
kubectl delete pvc datadir-clustercontrol-0
```

### Dependent resources
Although, uninstall **should** remove every dependency created by this helm chart, sometimes the database cluster hang. To clean up, try removing them manualy by running
```
kubectl delete innodbclusters.mysql.oracle.com clustercontrol
```

or editing above resource and removing finalizers.
2 changes: 1 addition & 1 deletion charts/clustercontrol/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: v1
kind: Secret
metadata:
name: cmon-license
data:
stringData:
CMON_LICENSE: {{ .Values.cmon.license | required ".Values.cmon.license is required" }}
license: {{ .Values.cmon.license | required ".Values.cmon.license is required" }}
{{ end }}
Expand Down

0 comments on commit 9aa3642

Please sign in to comment.