7.1.2 Creating a Kubernetes Secret for the WLST Domain
Create a Kubernetes secret for the domain using the
create-weblogic-credentials
script.
- Run the following command to create the secret:The output will look similar to the following:
cd $WORKDIR/kubernetes/create-weblogic-domain-credentials
Where:./create-weblogic-credentials.sh -u weblogic -p <pwd> -n <domain_namespace> -d <domain_uid> -s <kubernetes_domain_secret>
-
-u weblogic
is the WebLogic username. -
-p <pwd>
is the password for the WebLogic user. -
-n <domain_namespace>
is the domain namespace. -
-d <domain_uid>
is the domain UID to be created. -
-s <kubernetes_domain_secret>
is the name you want to create for the secret for this namespace.
cd $WORKDIR/kubernetes/create-weblogic-domain-credentials
The output will look similar to the following:./create-weblogic-credentials.sh -u weblogic -p <password> -n oigns -d governancedomain -s oig-domain-credentials
secret/oig-domain-credentials created secret/oig-domain-credentials labeled The secret oig-domain-credentials has been successfully created in the oigns namespace.
-
- 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 oig-domain-credentials -o yaml -n oigns
apiVersion: v1 data: password: V2VsY29tZTE= username: d2VibG9naWM= kind: Secret metadata: creationTimestamp: "<DATE>" labels: weblogic.domainName: governancedomain weblogic.domainUID: governancedomain name: oig-domain-credentials namespace: oigns resourceVersion: "3216738" uid: c2ec07e0-0135-458d-bceb-c648d2a9ac54 type: Opaque