aboutsummaryrefslogtreecommitdiff
path: root/nomad
diff options
context:
space:
mode:
Diffstat (limited to 'nomad')
-rw-r--r--nomad/bottin.hcl58
-rw-r--r--nomad/cassandra.hcl79
2 files changed, 0 insertions, 137 deletions
diff --git a/nomad/bottin.hcl b/nomad/bottin.hcl
deleted file mode 100644
index 281fabc..0000000
--- a/nomad/bottin.hcl
+++ /dev/null
@@ -1,58 +0,0 @@
-job "directory" {
- datacenters = ["dc1"]
- type = "service"
-
- constraint {
- attribute = "${attr.cpu.arch}"
- value = "amd64"
- }
-
- group "ldap" {
- count = 2
- task "server" {
- driver = "docker"
- config {
- image = "superboum/amd64_bottin:v10"
- readonly_rootfs = true
- port_map {
- ldap_port = 1389
- }
- }
-
- env {
- TRIGGER = 2
- BOTTIN_PORT = 1389
- BOTTIN_SUFFIX = "dc=deuxfleurs,dc=fr"
- BOTTIN_CONSUL = "consul.service.2.cluster.deuxfleurs.fr"
- }
-
- resources {
- memory = 100
- network {
- port "ldap_port" {
- static = "389"
- }
- }
- }
-
- service {
- tags = ["bottin"]
- port = "ldap_port"
- address_mode = "host"
- name = "bottin"
- check {
- type = "tcp"
- port = "ldap_port"
- interval = "60s"
- timeout = "5s"
- check_restart {
- limit = 3
- grace = "90s"
- ignore_warnings = false
- }
- }
- }
- }
- }
-}
-
diff --git a/nomad/cassandra.hcl b/nomad/cassandra.hcl
deleted file mode 100644
index 3e3dc9e..0000000
--- a/nomad/cassandra.hcl
+++ /dev/null
@@ -1,79 +0,0 @@
-job "cassandra" {
- datacenters = ["dc1"]
- type = "service"
-
- constraint {
- attribute = "${attr.cpu.arch}"
- value = "amd64"
- }
-
- group "scylladb" {
- count = 3
-
- constraint {
- operator = "distinct_hosts"
- value = "true"
- }
-
- // volume + command line
- task "scylladb_worker" {
- driver = "docker"
- config {
- image = "scylladb/scylla:3.1.2"
- readonly_rootfs = false
- port_map {
- scylla_port = 9042
- scylla_gossip_port = 7000
- scylla_jmx_port = 7199
- }
- args = [
- "--seeds=192.168.1.2,192.168.1.3,192.168.1.4",
- "--listen-address=0.0.0.0",
- "--broadcast-address=${NOMAD_IP_scylla_port}",
- "--broadcast-rpc-address=${NOMAD_IP_scylla_port}",
- "--developer-mode", "1",
- "--overprovisioned", "1",
- "--experimental", "0",
- "--memory", "200M"
- ]
- volumes = [
- "/var/lib/scylla:/var/lib/scylla"
- ]
- }
-
- resources {
- memory = 500
- network {
- port "scylla_port" {
- static = "9042"
- }
- port "scylla_gossip_port" {
- static = "7000"
- }
- port "scylla_jmx_port" {
- static = "7199"
- }
- }
- }
-
- service {
- tags = ["scylla"]
- port = "scylla_port"
- address_mode = "host"
- name = "scylla"
- check {
- type = "tcp"
- port = "scylla_port"
- interval = "60s"
- timeout = "5s"
- check_restart {
- limit = 3
- grace = "90s"
- ignore_warnings = false
- }
- }
- }
- }
- }
-}
-