Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
namecommon-installation-configurations

Container Images Hosted in Your Own Container Registry

If you are hosting the Usage Engine Private Edition container images in your own container registry (see https://infozone.atlassian.net/wiki/spaces/UEPE4D/pages/307953677/General+Usage+Engine+Private+Edition+Preparations+4.3#Hosting-Container-Images-in-Your-Own-Container-Registry), then the following helm values are required:

Code Block
languageyaml
platform:
  repository: <the repository where the platform image is hosted>
operator:
  repository: <the repository repo where the operator image is hosted>
desktopOnline:
  repository: <the repository repo where the ui image is hosted>      

System Database in Oracle

If you have opted for placing the system database in Oracle rather than PostgreSQL, it is assumed that the system database has already been created using the system database tool (see https://infozone.atlassian.net/wiki/spaces/UEPE4D/pages/307953677/General+Usage+Engine+Private+Edition+Preparations+4.3#System-Database-%5BinlineExtension%5D).

Then, when installing the Usage Engine Private Edition helm chart, make sure to set the following helm values:

Code Block
languageyaml
extensions:
  enabled: true
  image: my-uepe-extensions:1.0.0 # see additional information below on how to set this value
oracle:
  host: oracle # see additional information below on how to set this value
  port: 1521 # see additional information below on how to set this value
  db: UEPE # see additional information below on how to set this value
  expressEdition: false
platform:
  db:
    type: oracle

Additional information on how you can determine the values to set in your particular installation:

Value

Comment

extensions.image

The name of a custom container image containing the following Oracle software:

https://download.oracle.com/otn-pub/otn_software/jdbc/1923/ojdbc8.jar

https://download.oracle.com/otn_software/linux/instantclient/199000/oracle-instantclient19.9-basiclite-19.9.0.0.0-1.x86_64.rpm

https://download.oracle.com/otn_software/linux/instantclient/199000/oracle-instantclient19.9-sqlplus-19.9.0.0.0-1.x86_64.rpm

The Usage Engine Private Edition helm values file contains instructions on how to build this custom container image. Look for the extensions value to locate the instructions.

oracle.host

The domain name of the Oracle database service.

oracle.port

The port of the Oracle database service.

oracle.db

The name of the Usage Engine Private Edition database that was created in Oracle.

info

Note!

None of the postgres.* values outlined in the main installation example are required when opting for placing the system database in Oracle.