14.2.3 Finding Required Domain Details
The YAML files for ELK require certain domain values to be added.
- Run the following command to get the
mountPath
of your domain:
For example:kubectl describe domains <domain_uid> -n <domain_namespace> | grep "Mount Path"
If you deployed OAM using WLST, the output will look similar to the following:kubectl describe domains accessdomain -n oamns | grep "Mount Path"
If you deployed OAM using WDT, the output will look similar to the following:Mount Path: /u01/oracle/user_projects/domains
Mount Path: /u01/oracle/user_projects
- Run the following command to get the
Domain Home
andLog Home
of your domain:
For example:kubectl describe domains <domain_uid> -n <domain_namespace> | egrep "Domain Home: | Log Home:"
The output will look similar to the following:kubectl describe domains accessdomain -n oamns | egrep "Domain Home: | Log Home:"
Domain Home: /u01/oracle/user_projects/domains/accessdomain Http Access Log In Log Home: true Log Home: /u01/oracle/user_projects/domains/logs/accessdomain
- Run the following command to get the OAM domain persistence volume
details:
For example:kubectl get pv -n <domain_namespace>
The output will look similar to the following:kubectl get pv -n oamns
Make note of theNAME 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
CLAIM
value. In the example above the value isaccessdomain-domain-pvc
.