Add nomad template
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Elara 2023-05-04 15:10:09 -07:00
parent b717e3b131
commit 480c3ac20d
2 changed files with 81 additions and 1 deletions

View File

@ -9,4 +9,13 @@ pipeline:
tag: latest
when:
branch: public
event: push
event: push
deploy:
image: loq9/drone-nomad
settings:
addr: http://192.168.100.62:4646
template: template.nomad
environment:
- PLUGIN_WATCH_DEPLOYMENT=true
- PLUGIN_WATCH_DEPLOYMENT_TIMEOUT=10m

71
template.nomad Normal file
View File

@ -0,0 +1,71 @@
job "lure-web" {
region = "global"
datacenters = ["dc1"]
type = "service"
group "lure-web" {
network {
port "api" {
to = 8080
}
port "http" {
to = 3000
}
}
task "lure-api-server" {
driver = "docker"
env {
LURE_API_GITHUB_SECRET = "${LURE_API_GITHUB_SECRET}"
// Hack to force Nomad to re-deploy the service
// instead of ignoring it
COMMIT_SHA = "${DRONE_COMMIT_SHA}"
}
config {
image = "arsen6331/lure-api-server:latest"
ports = ["api"]
}
service {
name = "lure-api-server"
port = "api"
tags = [
"traefik.enable=true",
"traefik.http.routers.lure-api-server.rule=Host(`api.lure.elara.ws`)",
"traefik.http.routers.lure-api-server.tls.certresolver=letsencrypt"
]
check {
type = "tcp"
port = "api"
interval = "30s"
timeout = "2s"
}
}
}
task "lure-web" {
driver = "docker"
config {
image = "elara6331/lure-web:latest"
ports = ["http"]
}
service {
name = "lure-web"
port = "http"
tags = [
"traefik.enable=true",
"traefik.http.routers.lure-web.rule=Host(`lure.elara.ws`)",
"traefik.http.routers.lure-web.tls.certresolver=letsencrypt",
]
}
}
}
}