To enable NFS storage support:

  1. Connect to the server with the platform via SSH.
  2. Create a patch_backup_nfs.yaml file with the following contents:

    If Ubuntu 20.04 is installed on the server

    version: "3.7"
    services:
      dci_backup:
        environment:
          BACKUP_NFS: "on"
        cap_add:
          - CAP_SYS_ADMIN
        security_opt:
          - apparmor=nfs-server
    CODE

    If another OS is installed on the server

    version: "3.7"
    services:
      dci_backup:
        environment:
          BACKUP_NFS: "on"
        cap_add:
          - CAP_SYS_ADMIN
    CODE
  3. Run the command:

    dci add-patch -f patch_backup_nfs.yaml -p backup_nfs
    CODE

To disable NFS storage support, run the command on the server with the platform:

dci remove-patch -p backup_nfs
CODE