16.2.11 Starting the OIG 14c Deployment

Start the Oracle Identity Governance (OIG) 14c deployment.
  1. Run the following command to start the OIG domain:
    kubectl patch domain.v9.weblogic.oracle "%DOMAIN_UID%" -n "%NAMESPACE%" \
    --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"IfNeeded\"}}"
    For example:
    kubectl patch domain.v9.weblogic.oracle "governancedomain" -n "oigns" \
    --type=merge --patch "{\"spec\": {\"serverStartPolicy\": \"IfNeeded\"}}"
    The output will look similar to the following:
    domain.weblogic.oracle/governancedomain patched
  2. Run the following 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-introspector-jwqxw                      1/1     Running     0          10s
    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 with READY status 1/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
  3. Once everything is running, check the consoles are accessible as per Validating the Domain URLs.
  4. 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%
    kubectl delete configmap %DOMAIN_UID%-domain-upgrade-pod-cm -n %NAMESPACE%
    For example:
    kubectl delete pod governancedomain-domain-upgrade -n oigns
    kubectl delete configmap governancedomain-domain-upgrade-pod-cm -n oigns