7.3.2 Deploying OUDSM Using Set Argument
To deploy Oracle Unified Directory Services Manager (OUDSM) using the
--set
argument:
- Navigate to the
$WORKDIR/kubernetes/helm14c
directory:cd $WORKDIR/kubernetes/helm14c
- Run the following command to create OUDSM
instances:
For example: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
The following caveats exist: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
- 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>
- Replace
- Check the OUDSM deployment as per Verifying the OUDSM Deployment.