-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update docs for the use of 'kamel uninstall' command
- Loading branch information
1 parent
1f5a0f6
commit 31f05df
Showing
1 changed file
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
[[uninstalling]] | ||
= Uninstalling Camel K | ||
|
||
If you really need to, it is possible to completely uninstall Camel K from OpenShift or Kubernetes with the following command, using the "oc" or "kubectl" tool: | ||
If you really need to, it is possible to completely uninstall Camel K from OpenShift or Kubernetes with the following command: | ||
|
||
``` | ||
# kubectl on plain Kubernetes | ||
oc delete all,pvc,configmap,rolebindings,clusterrolebindings,secrets,sa,roles,clusterroles,crd -l 'app=camel-k' | ||
kamel uninstall | ||
``` | ||
|
||
This will uninstall from the cluster namespace all Camel K resources along with the operator. | ||
|
||
To verify that all resources have been removed you can use the following command: | ||
``` | ||
kubectl get all,pvc,configmap,rolebindings,clusterrolebindings,secrets,sa,roles,clusterroles,crd -l 'app=camel-k' | ||
No resources found in default namespace. | ||
``` |