-
I have 2 kafka clusters deployed on my Kubernetes cluster: Per the docs this is how to delete a Kafka cluster: kubectl -n kafka delete $(kubectl get strimzi -o name -n kafka) I want to just shutdown poc-cluster. Using the kubectl command as suggested by the docs would wipe everything except the strimzi-cluster-operator. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
That command deletes all Strimzi resources. If the docs got you thinking that it deletes one cluster, please share the exact place so that we can fix it. If you want to delete just one cluster, you can do it using kubectl as you would with any other Kubernetes resource. So for example |
Beta Was this translation helpful? Give feedback.
That command deletes all Strimzi resources. If the docs got you thinking that it deletes one cluster, please share the exact place so that we can fix it.
If you want to delete just one cluster, you can do it using kubectl as you would with any other Kubernetes resource. So for example
kubectl delete kafka poc-cluster
.