chore: backup infrastructure configurations [skip ci]

This commit is contained in:
github-actions[bot]
2026-02-01 02:01:41 +00:00
parent 9c0a699a53
commit 2933c7427b
34 changed files with 149 additions and 121 deletions

38
nomad_backup/jfs-node.hcl Normal file
View File

@@ -0,0 +1,38 @@
job "jfs-node" {
datacenters = ["dc1"]
type = "system"
group "nodes" {
task "juicefs-plugin" {
driver = "docker"
config {
image = "juicedata/juicefs-csi-driver:v0.31.1"
memory_hard_limit = 2048
args = [
"--endpoint=unix://csi/csi.sock",
"--logtostderr",
"--v=5",
"--nodeid=test",
"--by-process=true",
]
privileged = true
}
csi_plugin {
id = "juicefs0"
type = "node"
mount_dir = "/csi"
}
resources {
cpu = 100
memory = 100
}
env {
POD_NAME = "csi-node"
AWS_REGION = "garage"
}
}
}
}