7.1.8 Deploying the WLST OIG Domain

Deploy the Oracle Identity Governance (OIG) domain using the domain.yaml.

  1. Run the following command to deploy the OIG domain:
    kubectl apply -f $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/output/weblogic-domains/<domain_uid>/domain.yaml
    For example:
    kubectl apply -f $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/output/weblogic-domains/governancedomain/domain.yaml
    The output will look similar to the following:
    domain.weblogic.oracle/governancedomain unchanged
    cluster.weblogic.oracle/governancedomain-oim-cluster created
    cluster.weblogic.oracle/governancedomain-soa-cluster created
  2. Whilst the domain creation is running, you can run the following command to monitor the progress:
    kubectl get pods -n <domain_namespace> -w

    Note:

    The -w flag allows you watch the status of the pods as they change.
    For example:
    kubectl get pods -n oigns -w
    The output will initially look similar to the following:
    
    NAME                                                        READY   STATUS      RESTARTS   AGE
    governancedomain-create-fmw-infra-sample-domain-job-8cww8   0/1     Completed   0          27m
    governancedomain-introspector-rctsv                         1/1     Running     0          6s
    helper                                                      1/1     Running     0          3h30m
    
    The introspector pod will be displayed first.
    After several minutes the Administration Server and SOA Server are both started.

    Note:

    It will take several minutes before all the pods are started. When a pod has a STATUS of 0/1 the pod is started but the OIG server associated with it is currently starting. While the pods are starting you can check the startup status in the pod logs, by running the following command:
     kubectl logs <pod> -n <domain_namespace>
    For example:
    kubectl logs governancedomain-adminserver -n oigns
    When started, the pods should have aSTATUS of Running and READY = 1/1:
    NAME                                                        READY   STATUS      RESTARTS   AGE/
    governancedomain-adminserver                                1/1     Running     0          7m30s
    governancedomain-create-fmw-infra-sample-domain-job-8cww8   0/1     Completed   0          35m
    governancedomain-soa-server1                                1/1     Running     0          4m
    helper                                                      1/1     Running     0          3h38m

    Note:

    If there any failures, follow Domain Creation Failure with WLST in Known Issues.
  3. Check the clusters using the following command:
    kubectl get cluster -n <domain_namespace>
    For example:
    kubectl get cluster -n oigns
    The output will look similar to the following:
    NAME                           AGE
    governancedomain-oim-cluster   9m
    governancedomain-soa-cluster   9m
    
  4. Start the OIM server using the following command:
    kubectl patch cluster -n <domain_namespace> <OIMClusterName> --type=merge -p '{"spec":{"replicas":<initialManagedServerReplicas>}}'
    
    For example:
    kubectl patch cluster -n oigns governancedomain-oim-cluster --type=merge -p '{"spec":{"replicas":1}}'
    
    The output will look similar to the following:
    cluster.weblogic.oracle/governancedomain-oim-cluster patched
    Run the following command to view the status of the OIG pods:
    kubectl get pods -n <domain_namespace> -w
    For example:
    kubectl get pods -n oigns -w
    The output will initially look similar to the following:
    NAME                                                        READY   STATUS      RESTARTS   AGE
    governancedomain-adminserver                                1/1     Running     0          7m30s
    governancedomain-create-fmw-infra-sample-domain-job-8cww8   0/1     Completed   0          35m
    governancedomain-oim-server1                                1/1     Running     0          4m25s
    governancedomain-soa-server1                                1/1     Running     0          4m
    helper                                                      1/1     Running     0          3h38m

    Note:

    It will take several minutes before the governancedomain-oim-server1 pod has a STATUS of 1/1. While the pod is starting you can check the startup status in the pod log, by running the following command:
    kubectl logs governancedomain-oim-server1 -n oigns

    Note:

    If there any failures, follow Domain Creation Failure with WLST in Known Issues.