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. Run the following command to create the secret:The output will look similar to the following:
    cd $WORKDIR/kubernetes/create-weblogic-domain-credentials
    ./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:
    cd $WORKDIR/kubernetes/create-weblogic-domain-credentials
    ./create-weblogic-credentials.sh -u weblogic -p <password> -n oigns -d governancedomain -s oig-domain-credentials
    The output will look similar to the following:
    secret/oig-domain-credentials created
    secret/oig-domain-credentials labeled
    The secret oig-domain-credentials has been successfully created in the oigns namespace.
  2. 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 oig-domain-credentials -o yaml -n oigns
    The output will look similar to the following:
    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