aboutsummaryrefslogtreecommitdiff
path: root/app/bad.csi-s3/deploy/csi-s3.hcl
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-08-24 15:48:18 +0200
committerAlex Auvolat <alex@adnab.me>2022-08-24 15:48:18 +0200
commit41128f4c36f79def480b8cb866205296d703f247 (patch)
tree1ffaf8cd67d528b0eb9ee7943119157e3efdcfb2 /app/bad.csi-s3/deploy/csi-s3.hcl
parent981294e3d7a180a3c08f8173dc652b73b6e2bd07 (diff)
downloadnixcfg-41128f4c36f79def480b8cb866205296d703f247.tar.gz
nixcfg-41128f4c36f79def480b8cb866205296d703f247.zip
Clone core module in staging and prod, move bad stuff to experimental
Diffstat (limited to 'app/bad.csi-s3/deploy/csi-s3.hcl')
-rw-r--r--app/bad.csi-s3/deploy/csi-s3.hcl39
1 files changed, 0 insertions, 39 deletions
diff --git a/app/bad.csi-s3/deploy/csi-s3.hcl b/app/bad.csi-s3/deploy/csi-s3.hcl
deleted file mode 100644
index 8e70c6a..0000000
--- a/app/bad.csi-s3/deploy/csi-s3.hcl
+++ /dev/null
@@ -1,39 +0,0 @@
-job "plugin-csi-s3-nodes" {
- datacenters = ["neptune", "pluton"]
-
- # you can run node plugins as service jobs as well, but this ensures
- # that all nodes in the DC have a copy.
- type = "system"
-
- group "nodes" {
- task "plugin" {
- driver = "docker"
-
- config {
- image = "ctrox/csi-s3:v1.2.0-rc.1"
-
- args = [
- "--endpoint=unix://csi/csi.sock",
- "--nodeid=${node.unique.id}",
- "--logtostderr",
- "--v=5",
- ]
-
- # node plugins must run as privileged jobs because they
- # mount disks to the host
- privileged = true
- }
-
- csi_plugin {
- id = "csi-s3"
- type = "node"
- mount_dir = "/csi"
- }
-
- resources {
- cpu = 500
- memory = 256
- }
- }
- }
-}