Move node annotations to Nix

This commit is contained in:
Greg Hellings
2025-09-11 21:39:53 -05:00
parent ce0fd0102a
commit a573f12221
3 changed files with 34 additions and 13 deletions
+29
View File
@@ -0,0 +1,29 @@
apiVersion: v1
kind: Node
metadata:
name: isaiah
annotations:
"node.longhorn.io/default-disks-config": |-
[
{ "path": "/var/lib/longhorn", "allowScheduling" : true, "tags": ["hdd", "large"]}
]
---
apiVersion: v1
kind: Node
metadata:
name: jeremiah
annotations:
"node.longhorn.io/default-disks-config": |-
[
{ "path": "/var/lib/longhorn", "allowScheduling" : true, "tags": ["hdd", "large"]}
]
---
apiVersion: v1
kind: Node
metadata:
name: zeke
annotations:
"node.longhorn.io/default-disks-config": |-
[
{ "path": "/var/lib/longhorn", "allowScheduling" : trues, "tags": ["ssd", "fast"]}
]