7.2.1 Creating a Kubernetes Secret for the WDT Domain
Create a Kubernetes secret for the Oracle Identity Governance (OIG) domain using the
create-secret.sh
script.
- Navigate to the
wdt-utils
directory:cd $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/wdt-utils
- Run the following command to create the
secret:
Where:./create-secret.sh -l \ "username=weblogic" \ -l "password=<password>" \ -n <domain_namespace> \ -d <domain_uid> \ -s <domain-uid>-weblogic-credentials
-
<password>
is the password for the WebLogic user. -
<domain_namespace>
is the domain namespace for OIG. -
<domain_uid>
is the domain UID to be created. -
<domain-uid>-weblogic-credentials
is the name you want to create for the secret for this namespace.Note:
The secret name must follow the format<domain-uid>-weblogic-credentials
or domain creation will fail.
The output will look similar to the following:./create-secret.sh -l \ "username=weblogic" \ -l "password=<password>" \ -n oigns \ -d governancedomain \ -s governancedomain-weblogic-credentials
@@ Info: Setting up secret 'governancedomain-weblogic-credentials'. secret/governancedomain-weblogic-credentials created secret/governancedomain-weblogic-credentials labeled
-
- Verify the secret is created using the following
command:
For example:kubectl get secret <kubernetes_domain_secret> -o yaml -n <domain_namespace>
The output will look similar to the following:kubectl get secret governancedomain-weblogic-credentials -o yaml -n oigns
apiVersion: v1 data: password: <password> username: d2VibG9naWM= kind: Secret metadata: creationTimestamp: "<DATE>" labels: weblogic.domainName: governancedomain weblogic.domainUID: governancedomain name: governancedomain-weblogic-credentials namespace: oigns resourceVersion: "3216738" uid: c2ec07e0-0135-458d-bceb-c648d2a9ac54 type: Opaque