7.1.3 Creating a Kubernetes Secret for RCU in WLST
Create a Kubernetes secret for RCU using the create-rcu-credentials
script.
- Navigate to the following
directory:
cd $WORKDIR/kubernetes/create-rcu-credentials
- Run the following command to create the
secret:
Where:./create-rcu-credentials.sh -u <rcu_prefix> -p <rcu_schema_pwd> -a sys -q <sys_db_pwd> -d <domain_uid> -n <domain_namespace> -s <kubernetes_rcu_secret>
-
-u <rcu_prefix>
is the name of the RCU schema prefix created in Creating the RCU Schemas. -
-p <rcu_schema_pwd>
is the password for the RCU schema prefix. -q <sys_db_pwd>
is the SYS database password.-
-d <domain_uid>
is the same domain UID that you specified in Creating a Kubernetes Secret for the WLST Domain. -
-n <domain_namespace>
is the domain namespace. -
-s <kubernetes_rcu_secret>
is the name of the RCU secret to create.
The output will look similar to the following:./create-rcu-credentials.sh -u OAMK8S -p <password> -a sys -q <password> -d accessdomain -n oamns -s accessdomain-rcu-credentials
secret/accessdomain-rcu-credentials created secret/accessdomain-rcu-credentials labeled The secret accessdomain-rcu-credentials has been successfully created in the oamns namespace.
-
- Verify the secret is created using the following
command:
For example:kubectl get secret <kubernetes_rcu_secret> -o yaml -n <domain_namespace>
The output will look similar to the following:kubectl get secret accessdomain-rcu-credentials -o yaml -n oamns
apiVersion: v1 data: password: T3JhY2xlXzEyMw== sys_password: T3JhY2xlXzEyMw== sys_username: c3lz username: T0FNSzhT kind: Secret metadata: creationTimestamp: "<DATE>" labels: weblogic.domainName: accessdomain weblogic.domainUID: accessdomain name: accessdomain-rcu-credentials namespace: oamns resourceVersion: "29428242" uid: 1b81b6e0-fd7d-40b8-a060-454c8d23f4dc type: Opaque