aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-02-10 17:44:53 +0100
committerAlex Auvolat <alex@adnab.me>2020-02-10 17:44:53 +0100
commit0dca53bca06fbdb2096e4426acf8a2f3f3bf9c24 (patch)
tree5d0d6e3f55ca0507263cfbf6b4e27f15de743ed7
parent9a6e24aea0c0229b9b30dcf0136228bda34e4690 (diff)
downloadguichet-0dca53bca06fbdb2096e4426acf8a2f3f3bf9c24.tar.gz
guichet-0dca53bca06fbdb2096e4426acf8a2f3f3bf9c24.zip
Add nomad hcl example
-rw-r--r--guichet.hcl.example62
1 files changed, 62 insertions, 0 deletions
diff --git a/guichet.hcl.example b/guichet.hcl.example
new file mode 100644
index 0000000..d5c4411
--- /dev/null
+++ b/guichet.hcl.example
@@ -0,0 +1,62 @@
+job "guichet" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ constraint {
+ attribute = "${attr.cpu.arch}"
+ value = "amd64"
+ }
+
+ group "guichet" {
+ count = 1
+ task "server" {
+ driver = "docker"
+ config {
+ image = "lxpz/guichet_amd64:1"
+ readonly_rootfs = true
+ port_map {
+ web_port = 9991
+ }
+ volumes = [
+ "secrets/config.json:/config.json"
+ ]
+ }
+
+ template {
+ data = "{{ key \"configuration/directory/guichet/config.json\" }}"
+ destination = "secrets/config.json"
+ }
+
+ resources {
+ memory = 100
+ network {
+ port "web_port" {}
+ }
+ }
+
+ service {
+ name = "guichet"
+ tags = [
+ "guichet",
+ "traefik.enable=true",
+ "traefik.frontend.entryPoints=https,http",
+ "traefik.frontend.rule=Host:guichet.deuxfleurs.fr,guichet.deuxfleurs.org",
+ ]
+ 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
+ }
+ }
+ }
+ }
+ }
+}
+