infrastructure/hammerhead/app/gitea/deploy/gitea.hcl

113 lines
2.3 KiB
HCL
Raw Normal View History

2021-06-05 06:58:36 +00:00
job "gitea" {
datacenters = ["dc1"]
group "gitea" {
count = 1
volume "gitea-data" {
type = "host"
read_only = false
source = "gitea-data"
}
network {
2021-06-06 11:40:04 +00:00
mode = "bridge"
2021-06-18 10:33:46 +00:00
port "ssh" {
static = 22
}
2021-06-18 10:33:46 +00:00
# port "http" {
# static = 3000
# to = 3000
# }
2021-06-05 06:58:36 +00:00
}
service {
name = "gitea-frontend"
2021-06-18 10:33:46 +00:00
port = "3000"
connect {
sidecar_service {}
}
2021-06-05 06:58:36 +00:00
# check {
# name = "alive"
# type = "tcp"
# interval = "10s"
# timeout = "2s"
# }
}
2021-06-06 11:40:04 +00:00
2021-06-05 06:58:36 +00:00
service {
name = "gitea-ssh"
port = "ssh"
# check {
# name = "alive"
# type = "tcp"
# interval = "10s"
# timeout = "2s"
# }
}
2021-06-06 11:40:04 +00:00
service {
2021-06-18 10:33:46 +00:00
name = "gitea-postgres-connector"
2021-06-06 11:40:04 +00:00
connect {
sidecar_service {
proxy {
upstreams {
# Required
destination_name = "postgres"
local_bind_port = "5432"
# Optional
local_bind_address = "127.0.0.1"
2021-06-06 11:40:04 +00:00
}
}
}
}
}
2021-06-05 06:58:36 +00:00
task "gitea" {
driver = "docker"
config {
2021-06-18 10:33:46 +00:00
ports = ["ssh"]
2021-06-05 06:58:36 +00:00
image = "gitea/gitea:1.14.2"
volumes = [
"/etc/timezone:/etc/timezone:ro",
"/etc/localtime:/etc/localtime:ro"
]
}
volume_mount {
volume = "gitea-data"
destination = "/data"
read_only = false
}
template {
# Consul Template only works in template stanza.
# We need it to fetch secret values from Consul.
# The "env = true" parameter sets the environment with the data.
# "destination" key is required but its value doesn't matter.
data = <<EOH
DB_TYPE = "postgres"
DB_USER = "{{ key "secrets/postgres/gitea/user" }}"
DB_PASSWD = "{{ key "secrets/postgres/gitea/password" }}"
DB_NAME = "{{ key "secrets/postgres/gitea/db_name" }}"
EOH
2021-06-06 11:40:04 +00:00
destination = "secrets/env.env"
2021-06-05 06:58:36 +00:00
env = true
change_mode = "restart"
}
env {
DOMAIN = "gitea.hammerhead.luxeylab.net"
2021-06-05 06:58:36 +00:00
SSH_DOMAIN = "gitea.hammerhead.luxeylab.net"
DB_HOST = "${NOMAD_UPSTREAM_ADDR_postgres}"
2021-06-05 06:58:36 +00:00
}
}
}
}