7.3.1 Deploying OUDSM Using a YAML File
To deploy Oracle Unified Directory Services Manager (OUDSM) using a YAML file:
- Navigate to the
$WORKDIR/kubernetes/helm14c
directory:cd $WORKDIR/kubernetes/helm14c
- Create an
oudsm-values-override.yaml
as follows:
For example:image: repository: <image_location> tag: <image_tag> pullPolicy: IfNotPresent imagePullSecrets: - name: orclcred oudsm: adminUser: weblogic adminPass: <password> ingress: tlsEnabled: false persistence: type: filesystem filesystem: hostPath: path: <persistent_volume>/oudsm_user_projects
The following caveats exist:image: repository: container-registry.oracle.com/middleware/oudsm_cpu tag: 14.1.2.1.0-jdk17-ol8-<YYMMDD> pullPolicy: IfNotPresent imagePullSecrets: - name: orclcred oudsm: adminUser: weblogic adminPass: <password> ingress: tlsEnabled: false persistence: type: filesystem filesystem: hostPath: path: /nfs_volumes/oudsmpv/oudsm_user_projects
- Replace
<password>
with the relevant password. - If you are not using Oracle Container Registry or your own container registry for
your OUDSM container image, then you can remove the
following:
imagePullSecrets: - name: orclcred
- If using NFS for your persistent volume then change the
persistence
section as follows:persistence: type: networkstorage networkstorage: nfs: path: <persistent_volume>/oudsm_user_projects server: <NFS IP address>
- Replace
- Run the following command to deploy
OUDSM:
For example:helm install --namespace <namespace> \ --values oudsm-values-override.yaml \ <release_name> oudsm
The output will be similar to that shown in Helm Command Output.helm install --namespace oudsmns \ --values oudsm-values-override.yaml \ oudsm oudsm
- Check the OUDSM deployment as per Verifying the OUDSM Deployment.