github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/demo/csi/hostpath/hostpath.hcl (about)

     1  id        = "VOLUME_NAME"
     2  name      = "VOLUME_NAME"
     3  type      = "csi"
     4  plugin_id = "hostpath-plugin0"
     5  
     6  capacity_min = "1MB"
     7  capacity_max = "1GB"
     8  
     9  capability {
    10    access_mode     = "single-node-reader-only"
    11    attachment_mode = "file-system"
    12  }
    13  
    14  capability {
    15    access_mode     = "single-node-writer"
    16    attachment_mode = "file-system"
    17  }
    18  
    19  secrets {
    20    somesecret = "xyzzy"
    21  }
    22  
    23  mount_options {
    24    mount_flags = ["ro"]
    25  }