Commit 8497aa0f authored by Alberto Miranda's avatar Alberto Miranda ♨️
Browse files

Add examples of default namespace to norns.conf.in

parent ed71a7a6
Loading
Loading
Loading
Loading
Loading
+17 −17
Original line number Diff line number Diff line
@@ -25,23 +25,23 @@ global_settings: [
## list of namespaces available by default when service starts
namespaces: [

  # lustre namespace
  [
    nsid: "lustre0",
    mountpoint: "/mnt/lustre0",
    type: "POSIX/SHARED",
    capacity: "5 GiB",
    visibility: "all"
  ],

  # local namespace
  [
    nsid: "scratch0",
    mountpoint: "/mnt/scratch0",
    type: "POSIX/LOCAL",
    capacity: "25 GiB",
    visibility: "none"
  ],
  ###  # Example 1: lustre namespace
  ###  [
  ###    nsid: "lustre0",
  ###    mountpoint: "/mnt/lustre0",
  ###    type: "POSIX/SHARED",
  ###    capacity: "5 GiB",
  ###    visibility: "all"
  ###  ],

  ### # Example 2: local namespace
  ### [
  ###   nsid: "scratch0",
  ###   mountpoint: "/mnt/scratch0",
  ###   type: "POSIX/LOCAL",
  ###   capacity: "25 GiB",
  ###   visibility: "none"
  ### ],


]