16.2.5 Shutting Down the OIG Domain

Run the following commands to shutdown the Oracle Identity Governance (OIG) 12c deployment:
  1. Shut down the OIG deployment using the following command:
     kubectl patch domain %DOMAIN_UID% -n %NAMESPACE% --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"Never\"}}"
    For example:
     kubectl patch domain governancedomain -n oigns --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"Never\"}}"
    The output will look similar to the following:
    domain.weblogic.oracle/governancedomain patched
  2. Run the following kubectl command to view the pods:
    kubectl get pods -n %NAMESPACE%
    For example:
    kubectl get pods -n oigns
    The output will look similar to the following:
    
    NAME                           READY   STATUS         RESTARTS   AGE
    governancedomain-adminserver   1/1     Running        0          22h
    governancedomain-soa-server1   1/1     Running        0          22h
    governancedomain-oim-server1   0/1     Terminating    0          22h

    The Administration Server pods and Managed Server pods will move to a STATUS of Terminating.

    After a few minutes, run the command again and make sure the pods should have disappeared before continuing.

  3. If a helper pod exists, then delete it:
    kubectl delete pod helper -n %NAMESPACE%
    For example:
    kubectl delete pod helper -n oigns