aboutsummaryrefslogtreecommitdiff
path: root/experimental/bad.csi-s3
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-12-24 22:59:37 +0100
committerAlex Auvolat <alex@adnab.me>2022-12-24 22:59:37 +0100
commit8d17a07c9be5cd9d400644c34ea50177535d15f6 (patch)
treecac734f62d4c04c898d4e70d1e2ba65f933317ca /experimental/bad.csi-s3
parent4b527c4db8060679d21e5bb596bde91ce39df393 (diff)
downloadnixcfg-8d17a07c9be5cd9d400644c34ea50177535d15f6.tar.gz
nixcfg-8d17a07c9be5cd9d400644c34ea50177535d15f6.zip
reorganize some things
Diffstat (limited to 'experimental/bad.csi-s3')
-rw-r--r--experimental/bad.csi-s3/deploy/csi-s3.hcl39
-rw-r--r--experimental/bad.csi-s3/deploy/dummy-volume.hcl20
2 files changed, 0 insertions, 59 deletions
diff --git a/experimental/bad.csi-s3/deploy/csi-s3.hcl b/experimental/bad.csi-s3/deploy/csi-s3.hcl
deleted file mode 100644
index 8e70c6a..0000000
--- a/experimental/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
- }
- }
- }
-}
diff --git a/experimental/bad.csi-s3/deploy/dummy-volume.hcl b/experimental/bad.csi-s3/deploy/dummy-volume.hcl
deleted file mode 100644
index 67dfd39..0000000
--- a/experimental/bad.csi-s3/deploy/dummy-volume.hcl
+++ /dev/null
@@ -1,20 +0,0 @@
-id = "dummy-volume"
-name = "dummy-volume"
-type = "csi"
-plugin_id = "csi-s3"
-
-capability {
- access_mode = "single-node-writer"
- attachment_mode = "file-system"
-}
-
-secrets {
- accessKeyId = "GKfd94f06139bb73de5642baf5"
- secretAccessKey = "a4fa6c956d847b145a823c4615e4655126c67babf3cce2337b4d73cd381d7f06"
- endpoint = "https://garage-staging.home.adnab.me"
- region = "garage-staging"
-}
-
-parameters {
- mounter = "rclone"
-}