19.6 Deleting the OAM Namespace

Perform the following step to delete the Oracle Access Management (OAM) namespace:
  1. Delete the helper pod if it is running:
    kubectl delete pod helper -n <domain_namepace>
    
    For example:
    kubectl delete pod helper -n oamns
    
  2. Check to make sure all Kubernetes in the namespace are deleted:
    kubectl get all,domains -n <domain_namepace>
    
    For example:
    kubectl get all,domains -n oamns
    If any objects remain, delete them manually.
  3. Delete the namespace using the following command:
    kubectl delete namespace <domain_namespace>
    For example:
    kubectl delete namespace oamns