7.3.1 Deploying OUDSM Using a YAML File

To deploy Oracle Unified Directory Services Manager (OUDSM) using a YAML file:
  1. Navigate to the $WORKDIR/kubernetes/helm14c directory:
    cd $WORKDIR/kubernetes/helm14c
  2. Create an oudsm-values-override.yaml as follows:
    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
    
    For example:
    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
    
    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:
      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>
      
  3. Run the following command to deploy OUDSM:
    helm install --namespace <namespace> \
    --values oudsm-values-override.yaml \
    <release_name> oudsm
    
    For example:
    helm install --namespace oudsmns \
    --values oudsm-values-override.yaml \
    oudsm oudsm
    
    The output will be similar to that shown in Helm Command Output.
  4. Check the OUDSM deployment as per Verifying the OUDSM Deployment.