14.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 accessdomain -n oamns | grep "Mount Path"
    If you deployed OAM using WLST, the output will look similar to the following:
    Mount Path: /u01/oracle/user_projects/domains
    If you deployed OAM 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 accessdomain -n oamns | egrep "Domain Home: | Log Home:"
    The output will look similar to the following:
    Domain Home:                     /u01/oracle/user_projects/domains/accessdomain
    Http Access Log In Log Home:     true
    Log Home:                           /u01/oracle/user_projects/domains/logs/accessdomain
    
  3. Run the following command to get the OAM domain persistence volume details:
    kubectl get pv -n <domain_namespace>
    
    For example:
    kubectl get pv -n oamns
    The output will look similar to the following:
    NAME                     CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS  CLAIM                           STORAGECLASS                         REASON   AGE
    accessdomain-domain-pv   10Gi       RWX            Retain           Bound   oamns/accessdomain-domain-pvc   accessdomain-domain-storage-class           23h
    
    Make note of the CLAIM value. In the example above the value is accessdomain-domain-pvc.