Hi, I’m still a bit new to Kubernetes and the concept of operators. If I want to delete a cluster I made using the AWX Operator, do I just delete the operator deployment (awx-operator), then the actual deployment (awx)? Or is there another step?
Looks like deleting the two deployments still left over a lot of services and the postgres pod…
What’s the best way to remove awx from the cluster?
If you delete the awxs object you created, the operator will delete everything specific to that deployment apart from the postgres PVC:
kubectl delete awxs my\-awx\-name
then
kubectl get pvc
to see what PVCs you have. The default name is something like postgres-awx-postgres-0
This only works if the operator is still there!