aboutsummaryrefslogtreecommitdiff
path: root/nomad/nextcloud.hcl
diff options
context:
space:
mode:
authorQuentin <quentin@deuxfleurs.fr>2020-09-12 10:03:48 +0200
committerQuentin <quentin@deuxfleurs.fr>2020-09-12 10:03:48 +0200
commitc4a6cf1534b864d3941c839d4a4dca7e505bd828 (patch)
tree3e866768cf39ae947def5b205f74fddfb435725d /nomad/nextcloud.hcl
parent0550647b9348d1e36431400e0832b4340564c658 (diff)
downloadinfrastructure-c4a6cf1534b864d3941c839d4a4dca7e505bd828.tar.gz
infrastructure-c4a6cf1534b864d3941c839d4a4dca7e505bd828.zip
Rebase first step
Diffstat (limited to 'nomad/nextcloud.hcl')
-rw-r--r--nomad/nextcloud.hcl67
1 files changed, 0 insertions, 67 deletions
diff --git a/nomad/nextcloud.hcl b/nomad/nextcloud.hcl
deleted file mode 100644
index 2cc4f5f..0000000
--- a/nomad/nextcloud.hcl
+++ /dev/null
@@ -1,67 +0,0 @@
-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
- }
- }
- }
- }
- }
-}
-