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:
Aaron Peschel
2017-08-26 09:53:53 +05:30
committed by Dhilip
parent ba4610b703
commit 7d784738c8
+8 -3
View File
@@ -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