7.3.2 Deploying OUDSM Using Set Argument

To deploy Oracle Unified Directory Services Manager (OUDSM) using the --set argument:
  1. Navigate to the $WORKDIR/kubernetes/helm14c directory:
    cd $WORKDIR/kubernetes/helm14c
  2. Run the following command to create OUDSM instances:
    helm install --namespace oudsmns \
    --set oudsm.adminUser=weblogic,oudsm.adminPass=<password>,ingress.tlsEnabled=false,persistence.filesystem.hostPath.path=<persistent_volume>/oudsm_user_projects,image.repository=<image_location>,image.tag=<image_tag> \
    --set imagePullSecrets[0].name="orclcred" \
    <release_name> oudsm
    For example:
    helm install --namespace oudsmns \
    --set oudsm.adminUser=weblogic,oudsm.adminPass=<password>,ingress.tlsEnabled=false,persistence.filesystem.hostPath.path=/nfs_volumes/oudsmpv/oudsm_user_projects,image.repository=container-registry.oracle.com/middleware/oudsm_cpu,image.tag=14.1.2.1.0-jdk17-ol8-<YYMMDD> \
    --set imagePullSecrets[0].name="orclcred" \
    oudsm oudsm
    
    The following caveats exist:
    • 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:
      --set imagePullSecrets[0].name="orclcred"
    • If using NFS for your persistent volume then use:
      persistence.networkstorage.nfs.path=<persistent_volume>/oudsm_user_projects,persistence.networkstorage.nfs.server:<NFS IP address>
  3. Check the OUDSM deployment as per Verifying the OUDSM Deployment.