mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Correct Uninstall Instructions (#1831)
This commit corrects the uninstall instructions in the README for the elasticsearch chart. * Make it clear that the helm delete command is still required * Correct the filter from "type" to "component" * Remove the manual pod deletion, they are automatically removed
This commit is contained in:
@@ -40,11 +40,16 @@ $ helm install --name my-release incubator/elasticsearch
|
||||
|
||||
## Deleting the Charts
|
||||
|
||||
Deletion of the PetSet doesn't cascade to deleting associated Pods and PVCs. To delete them:
|
||||
Delete the Helm deployment as normal
|
||||
|
||||
```
|
||||
$ kubectl delete pods -l release=my-release,type=data
|
||||
$ kubectl delete pvcs -l release=my-release,type=data
|
||||
$ helm delete my-release
|
||||
```
|
||||
|
||||
Deletion of the StatefulSet doesn't cascade to deleting associated PVCs. To delete them:
|
||||
|
||||
```
|
||||
$ kubectl delete pvc -l release=my-release,component=data
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
Reference in New Issue
Block a user