10.5.3.2 Using a Container Image for Design Console
The Design Console can be run from a container using X Windows emulation.
To use a container image for Design Console with Podman or Docker, perform the following
steps:
Note:
The example below use podman. Unless stated thepodman
command can be replaced with
docker
.
- On the parent machine where the Design Console is to be displayed, run
xhost +
. - Find which worker node the
oim-server1
pod is running. For example:
For example:kubectl get pods -n <domain_namespace> -o wide | grep <domainUID>-oim-server1
The output will look similar to the following:kubectl get pods -n oigns -o wide | grep governancedomain-oim-server1
governancedomain-oim-server1 1/1 Running 0 31m 10.244.2.98 worker-node2
- On the worker node returned above, for example
worker-node2
, execute the following command to find the OIG container image name:
The output will be similar to the following:sudo podman images
REPOSITORY TAG IMAGE ID CREATED SIZE container-registry.oracle.com/middleware/oig_cpu 14.1.2.1.0-jdk17-ol8-<YYDDMM> 7cde9673ba56 5 days ago 4.43 GB
- Run the following command to start a container to run Design
Console:
For example:podman run -u root --name oigdcbase -it <image> bash
This will take you into a bash shell inside the container:podman run -u root -it --name oigdcbase container-registry.oracle.com/middleware/oig_cpu:14.1.2.1.0-jdk17-ol8-<YYDDMM> bash
bash-4.2#
- Inside the bash shell for the container, run the following command to set the proxy
to the
internet:
export https_proxy=http://proxy.example.com:80
- Run the following command to install the required
packages:
yum install libXext libXrender libXtst
- If using SSL, copy the Certificate Authority (CA) certificate(s) for your OIG URL
entry point, to the worker node where the
oigdcbase
image is to be created. Run the following command outside the container:cd $WORKDIR>/ssl
For example:podman cp <certificate> <container_name>:/u01/jdk/jre/lib/security/<certificate>
podman cp ca.crt oigdcbase:/u01/jdk/jre/lib/security/ca.crt
- Inside the bash shell for the container, run the following command to import the CA
certificate:
For example:/u01/jdk/bin/keytool -import -trustcacerts -alias dc -file /u01/jdk/jre/lib/security/<certificate> \ -keystore /u01/jdk/jre/lib/security/cacerts
/u01/jdk/bin/keytool -import -trustcacerts -alias dc -file /u01/jdk/jre/lib/security/ca.crt \ -keystore /u01/jdk/jre/lib/security/cacerts
- Outside the container, run the following command to create a new Design Console
image from the
container:
For example:podman commit <container_name> <design_console_image_name>
podman commit oigdcbase oigdc
- Exit the container bash
session:
exit
- Start a new container using the Design Console
image:
This will take you into a bash shell for the container:podman run --name oigdc -it oigdc /bin/bash
bash-4.2#
- In the bash shell for the container, run the following to export the
DISPLAY:
export DISPLAY=<parent_machine_hostname:1>
- Start the Design Console from inside the
container:
cd idm/designconsole
The Design Console login should be displayed.sh xlclient.sh