7.1.3 Creating a Kubernetes Secret for RCU in WLST

Create a Kubernetes secret for RCU using the create-rcu-credentials script.

  1. Navigate to the following directory:
    cd $WORKDIR/kubernetes/create-rcu-credentials
  2. Run the following command to create the secret:
    ./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>
    Where:
    • -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.
    For example:
    ./create-rcu-credentials.sh -u OAMK8S -p <password> -a sys -q <password> -d accessdomain -n oamns -s accessdomain-rcu-credentials
    The output will look similar to the following:
    secret/accessdomain-rcu-credentials created
    secret/accessdomain-rcu-credentials labeled
    The secret accessdomain-rcu-credentials has been successfully created in the oamns namespace.
  3. Verify the secret is created using the following command:
    kubectl get secret <kubernetes_rcu_secret> -o yaml -n <domain_namespace>
    
    For example:
    kubectl get secret accessdomain-rcu-credentials -o yaml -n oamns
    
    The output will look similar to the following:
    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