mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-31 04:04:51 +00:00
Merge pull request #411 from marquiz/documentation/uninstall
docs: more options in uninstallation instructions
This commit is contained in:
commit
24937bbed6
1 changed files with 12 additions and 0 deletions
|
@ -244,6 +244,18 @@ lifecycle manager, respectively.
|
||||||
|
|
||||||
### Manual
|
### Manual
|
||||||
|
|
||||||
|
Simplest way is to invoke `kubectl delete` on the deployment files you used.
|
||||||
|
Beware that this will also delete the namespace that NFD is running in. For
|
||||||
|
example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
kubectl delete -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/{{ site.release }}/nfd-worker-daemonset.yaml.template
|
||||||
|
kubectl delete -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/{{ site.release }}/nfd-master.yaml.template
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternatively you can delete create objects one-by-one, depending on the type
|
||||||
|
of deployment, for example:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
NFD_NS=node-feature-discovery
|
NFD_NS=node-feature-discovery
|
||||||
kubectl -n $NFD_NS delete ds nfd-worker
|
kubectl -n $NFD_NS delete ds nfd-worker
|
||||||
|
|
Loading…
Add table
Reference in a new issue