aboutsummaryrefslogtreecommitdiff
path: root/experimental/app/csi-s3/deploy/csi-s3.hcl
blob: 8e70c6a8b14a418167e165e5618ce697c99bba88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
      }
    }
  }
}