diff options
author | Alex Auvolat <alex@adnab.me> | 2020-07-05 22:54:47 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-07-05 22:55:00 +0200 |
commit | c344dacb65e967bef7a06e34adb02494d98cde77 (patch) | |
tree | 6da8818681683ceaaa6271f4023c2371e87a4b3f /nomad/nextcloud.hcl | |
parent | 5e83c8e5fe8f5b9566673e96c6d963bc8d0129d6 (diff) | |
download | infrastructure-c344dacb65e967bef7a06e34adb02494d98cde77.tar.gz infrastructure-c344dacb65e967bef7a06e34adb02494d98cde77.zip |
Add garage and nextcloud configuration
Diffstat (limited to 'nomad/nextcloud.hcl')
-rw-r--r-- | nomad/nextcloud.hcl | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/nomad/nextcloud.hcl b/nomad/nextcloud.hcl new file mode 100644 index 0000000..2cc4f5f --- /dev/null +++ b/nomad/nextcloud.hcl @@ -0,0 +1,67 @@ +job "nextcloud" { + datacenters = ["dc1", "belair"] + type = "service" + + constraint { + attribute = "${attr.cpu.arch}" + value = "amd64" + } + + group "nextcloud" { + count = 1 + task "nextcloud" { + driver = "docker" + config { + image = "lxpz/deuxfleurs_nextcloud_amd64:8" + port_map { + web_port = 80 + } + volumes = [ + "secrets/config.php:/var/www/html/config/config.php" + ] + } + + artifact { + source = "http://127.0.0.1:8500/v1/kv/configuration/nextcloud/config.php.tpl?raw" + destination = "secrets/config.php.tpl" + mode = "file" + } + template { + source = "secrets/config.php.tpl" + destination = "secrets/config.php" + } + + resources { + memory = 1000 + cpu = 2000 + network { + port "web_port" {} + } + } + + service { + name = "nextcloud" + tags = [ + "nextcloud", + "traefik.enable=true", + "traefik.frontend.entryPoints=https,http", + "traefik.frontend.rule=Host:nextcloud.deuxfleurs.fr", + ] + port = "web_port" + address_mode = "host" + check { + type = "tcp" + port = "web_port" + interval = "60s" + timeout = "5s" + check_restart { + limit = 3 + grace = "90s" + ignore_warnings = false + } + } + } + } + } +} + |