Mount a New File System on a UAN

Perform this procedure to create a mount point for a new file system on a UAN.

  1. Perform Steps 1-9 of Create UAN Boot Images.

  2. Create a directory for Application role nodes.

    ncn-w001# mkdir -p group_vars/Application
    
  3. Define the home directory information for the new file system in the filesystems.yml file.

    ncn-w001# vi group_vars/Application/filesystems.yml
    ---
    filesystems:
      - src: 10.252.1.1:/home
        mount_point: /home    
        fstype: nfs4    
        opts: rw,noauto
        state: mounted
    
  4. Add the change from the working directory to the staging area.

    ncn-w001# git add -A
    
  5. Commit the file to the working branch.

    ncn-w001# git commit -am 'Added file system info'
    
  6. Resume Create UAN Boot Images at Step 10.