16.2.11 Starting the OIG 14c Deployment
Start the Oracle Identity Governance (OIG) 14c deployment.
- Run the following command to start the OIG
domain:
For example:kubectl patch domain.v9.weblogic.oracle "%DOMAIN_UID%" -n "%NAMESPACE%" \ --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"IfNeeded\"}}"
The output will look similar to the following:kubectl patch domain.v9.weblogic.oracle "governancedomain" -n "oigns" \ --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"IfNeeded\"}}"
domain.weblogic.oracle/governancedomain patched
- Run the following 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
The introspect job will start, followed by the Administration Server pod, and then the OIG server pods. This process will take several minutes, so keep executing the command until all the pods are running withNAME READY STATUS RESTARTS AGE governancedomain-introspector-jwqxw 1/1 Running 0 10s
READY
status1/1
:Note:
Alternatively, you can add the watch flag,-w
, which allows you watch the status of the pods as they change.NAME READY STATUS RESTARTS AGE governancedomain-adminserver 1/1 Running 0 16m governancedomain-soa-server1 1/1 Running 0 13m governancedomain-oim-server1 1/1 Running 0 13m
- Once everything is running, check the consoles are accessible as per Validating the Domain URLs.
- Once you are confident the upgrade is successful, delete the
domain-upgrade
pod and ConfigMap as follows:kubectl delete pod %DOMAIN_UID%-domain-upgrade -n %NAMESPACE%
For example:kubectl delete configmap %DOMAIN_UID%-domain-upgrade-pod-cm -n %NAMESPACE%
kubectl delete pod governancedomain-domain-upgrade -n oigns
kubectl delete configmap governancedomain-domain-upgrade-pod-cm -n oigns