12.1 Prerequisite Configurations
In order to use HPA, Oracle Unified Directory (OUD) must have been created with the
required resources
parameter as per Creating Oracle Unified Directory Instances.
For example:
oudConfig:
# memory, cpu parameters for both requests and limits for oud instances
resources:
limits:
cpu: "1"
memory: "8Gi"
requests:
cpu: "500m"
memory: "4Gi"
You can check the values by running the following
command:
helm get values oud-ds-rs -n oudns
The
output will look similar to the
following:...oudConfig:
resources:
limits:
cpu: "1"
memory: 4Gi
requests:
cpu: 500m
memory: 4Gi
...