13.2.3 Finding Required Domain Details

The YAML files for ELK require certain domain values to be added.

  1. Run the following command to get the mountPath of your domain:
    kubectl describe domains <domain_uid> -n <domain_namespace> | grep "Mount Path"
    
    For example:
    kubectl describe domains governancedomain -n oigns | grep "Mount Path"
    If you deployed OIG using WLST, the output will look similar to the following:
    Mount Path: /u01/oracle/user_projects/domains
    If you deployed OIG using WDT, the output will look similar to the following:
    Mount Path: /u01/oracle/user_projects
  2. Run the following command to get the Domain Home and Log Home of your domain:
    kubectl describe domains <domain_uid> -n <domain_namespace> | egrep "Domain Home: | Log Home:"
    
    For example:
    kubectl describe domains governancedomain -n oigns | egrep "Domain Home: | Log Home:"
    
    The output will look similar to the following:
    Domain Home:                     /u01/oracle/user_projects/domains/governancedomain
    Http Access Log In Log Home:     true
    Log Home:                           /u01/oracle/user_projects/domains/logs/governancedomain
    
  3. Run the following command to get the OIG domain persistence volume details:
    kubectl get pv -n <domain_namespace>
    
    For example:
    kubectl get pv -n oigns
    The output will look similar to the following:
    NAME                         CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS   CLAIM                               STORAGECLASS                         REASON   AGE
    governancedomain-domain-pv   10Gi       RWX            Retain           Bound    oigns/governancedomain-domain-pvc   governancedomain-oim-storage-class            28h
    
    Make note of the CLAIM value. In the example above the value is governancedomain-domain-pvc.