7.1.2 Creating a Kubernetes Secret for the WLST Domain

Create a Kubernetes secret for the domain using the create-weblogic-credentials script.

  1. Navigate to the $WORKDIR/kubernetes/create-weblogic-domain-credentials directory:
    cd $WORKDIR/kubernetes/create-weblogic-domain-credentials
  2. Run the following command to create the secret:
    ./create-weblogic-credentials.sh -u weblogic -p <pwd> -n <domain_namespace> -d <domain_uid> -s <kubernetes_domain_secret>
    Where:
    • -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.
    For example:
    ./create-weblogic-credentials.sh -u weblogic -p <password> -n oamns -d accessdomain -s accessdomain-credentials
    The output will look similar to the following:
    secret/accessdomain-credentials created
    secret/accessdomain-credentials labeled
    The secret accessdomain-credentials has been successfully created in the oamns namespace.
  3. Verify the secret is created using the following command:
    kubectl get secret <kubernetes_domain_secret> -o yaml -n <domain_namespace>
    
    For example:
    kubectl get secret accessdomain-credentials -o yaml -n oamns
    The output will look similar to the following:
    apiVersion: v1
    data:
      password: V2VsY29tZTE=
      username: d2VibG9naWM=
    kind: Secret
    metadata:
      creationTimestamp: "<DATE>"
      labels:
        weblogic.domainName: accessdomain
        weblogic.domainUID: accessdomain
      name: accessdomain-credentials
      namespace: oamns
      resourceVersion: "29428101"
      uid: 6dac0561-d157-4144-9ed7-c475a080eb3a
    type: Opaque