7.2.2 Creating a Kubernetes Secret for RCU in WDT
Create a Kubernetes secret for RCU using the create-secret.sh
script.
- Navigate to the
wdt-utils
directory:cd $WORKDIR/kubernetes/create-oim-domain/domain-home-on-pv/wdt-utils
- Run the following command to create the
secret:
Where:./create-secret.sh -l "rcu_prefix=<rcu_prefix>" \ -l "rcu_schema_password=<rcu_schema_pwd>" \ -l "db_host=<db_host.domain>" \ -l "db_port=<db_port>" \ -l "db_service=<service_name>" \ -l "dba_user=<sys_db_user>" \ -l "dba_password=<sys_db_pwd>" \ -n <domain_namespace> \ -d <domain_uid> \ -s <domain_uid>-rcu-credentials
-
<rcu_prefix>
is the name of the RCU schema prefix to be created. -
<rcu_schema_pwd>
is the password you want to create for the RCU schema prefix. -
<db_host.domain>
is the hostname.domain of the database. -
<db_port>
is the database listener port. -
<service_name>
is the service name of the database. -
<sys_db_user>
is the database user with SYSDBA privilege. -
<sys_db_pwd>
is the SYS database password. -
<domain_uid>
is thedomain_uid
that you want to create. This must be the samedomain_uid
used in Creating a Kubernetes Secret for the WDT Domain. -
<domain_namespace>
is the OIG domain namespace. -
<domain_uid>-rcu-credentials
is the name you want to create for the RCU secret for this namespace.Note:
The secret name must follow the format<domain_uid>-rcu-credentials
or domain creation will fail.
The output will look similar to the following:./create-secret.sh -l "rcu_prefix=OIGK8S" \ -l "rcu_schema_password=<password>" \ -l "db_host=mydatabasehost.example.com" \ -l "db_port=1521" \ -l "db_service=orcl.example.com" \ -l "dba_user=sys" \ -l "dba_password=<password>" \ -n oigns \ -d governancedomain \ -s governancedomain-rcu-credentials
@@ Info: Setting up secret 'governancedomain-rcu-credentials'. secret/governancedomain-rcu-credentials created secret/governancedomain-rcu-credentials labeled
-
- 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 governancedomain-rcu-credentials -o yaml -n oigns
apiVersion: v1 data: db_host: <DB_HOST> db_port: MTUyMQ== db_service: <SERVICE_NAME> dba_password: <PASSWORD> dba_user: c3lz rcu_prefix: <RCU_PREFIX> rcu_schema_password: <RCU_PWD> kind: Secret metadata: creationTimestamp: "<DATE>" labels: weblogic.domainUID: governancedomain name: governancedomain-rcu-credentials namespace: oigns resourceVersion: "31695660" uid: 71cfcc73-4c96-42bd-b9a5-988ea9ed27ff type: Opaque