You are looking at the documentation of a prior release. To read the documentation of the latest release, please
visit here.
New to Kubed? Please start here.
Uninstall Kubed
Please follow the steps below to uninstall Kubed:
Using Helm 3
In Helm 3, release names are scoped to a namespace. So, provide the namespace you used to install the operator when installing.
$ helm uninstall kubed --namespace kube-system
Using Helm 2
$ helm delete kubed
Using YAML (with helm 3)
If you prefer to not use Helm, you can generate YAMLs from Kubed chart and uninstall using kubectl
.
$ helm template kubed appscode/kubed --namespace kube-system | kubectl delete -f -