18.4 Deleting the WebLogic Kubernetes Operator

To delete the WebLogic Kubernetes Operator, perform the following steps:
  1. Run the following command to remove the operator:
    helm delete weblogic-kubernetes-operator -n opns
  2. Delete the label from the OIG namespace::
    kubectl label namespaces <domain_namespace> weblogic-operator-
    For example:
    kubectl label namespaces oigns weblogic-operator-
    
  3. Delete the service account for the operator:
    kubectl delete serviceaccount <sample-kubernetes-operator-sa> -n <domain_namespace>
    
    For example:
    kubectl delete serviceaccount op-sa -n opns
    
  4. Delete the operator namespace:
    kubectl delete namespace <sample-kubernetes-operator-ns>
    For example:
    kubectl delete namespace opns