16.2.5 Shutting Down the OIG Domain
Run the following commands to shutdown the Oracle Identity Governance (OIG) 12c
deployment:
- Shut down the OIG deployment using the following
command:
For example:kubectl patch domain %DOMAIN_UID% -n %NAMESPACE% --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"Never\"}}"
The output will look similar to the following:kubectl patch domain governancedomain -n oigns --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"Never\"}}"
domain.weblogic.oracle/governancedomain patched
- Run the following kubectl command to view the
pods:
For example:kubectl get pods -n %NAMESPACE%
The output will look similar to the following:kubectl get pods -n oigns
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
ofTerminating
.After a few minutes, run the command again and make sure the pods should have disappeared before continuing.
- If a helper pod exists, then delete
it:
For example:kubectl delete pod helper -n %NAMESPACE%
kubectl delete pod helper -n oigns