fix config syntax
This commit is contained in:
parent
c5bb691b5a
commit
e8b159de17
1 changed files with 9 additions and 2 deletions
|
|
@ -39,6 +39,12 @@ let
|
||||||
"epsilon"
|
"epsilon"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# initiators = [
|
||||||
|
# { node_wwn = "iqn.2026-01.dev.nyxerinys:gamma"; }
|
||||||
|
# { node_wwn = "iqn.2026-01.dev.nyxerinys:delta"; }
|
||||||
|
# { node_wwn = "iqn.2026-01.dev.nyxerinys:epsilon"; }
|
||||||
|
# ];
|
||||||
|
|
||||||
targets = [
|
targets = [
|
||||||
{ name = "authentik"; zvol = "Velaris/Containers/Authentik"; lun = 0; }
|
{ name = "authentik"; zvol = "Velaris/Containers/Authentik"; lun = 0; }
|
||||||
];
|
];
|
||||||
|
|
@ -86,10 +92,11 @@ in {
|
||||||
luns = [
|
luns = [
|
||||||
{
|
{
|
||||||
index = t.lun;
|
index = t.lun;
|
||||||
storage_object = "/backstores/block/${t.name}";
|
plugin = "block";
|
||||||
|
name = t.name;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
acls = initiators;
|
node_acls = initiators;
|
||||||
}];
|
}];
|
||||||
}) targets;
|
}) targets;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue