Run hclfmt
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Elara 2023-06-09 20:38:43 -07:00
parent cf08c9e928
commit 6d5c7141fb

View File

@ -11,8 +11,8 @@ job "lure-updater" {
} }
volume "lure-updater-data" { volume "lure-updater-data" {
type = "host" type = "host"
source = "lure-updater-data" source = "lure-updater-data"
read_only = false read_only = false
} }
@ -20,19 +20,19 @@ job "lure-updater" {
driver = "docker" driver = "docker"
volume_mount { volume_mount {
volume = "lure-updater-data" volume = "lure-updater-data"
destination = "/etc/lure-updater" destination = "/etc/lure-updater"
read_only = false read_only = false
} }
env { env {
GIT_REPO_DIR="/etc/lure-updater/repo" GIT_REPO_DIR = "/etc/lure-updater/repo"
GIT_REPO_URL="https://github.com/Elara6331/lure-repo.git" GIT_REPO_URL = "https://github.com/Elara6331/lure-repo.git"
GIT_CREDENTIALS_USERNAME="lure-repo-bot" GIT_CREDENTIALS_USERNAME = "lure-repo-bot"
GIT_CREDENTIALS_PASSWORD="${GITHUB_PASSWORD}" GIT_CREDENTIALS_PASSWORD = "${GITHUB_PASSWORD}"
GIT_COMMIT_NAME="lure-repo-bot" GIT_COMMIT_NAME = "lure-repo-bot"
GIT_COMMIT_EMAIL="lure@elara.ws" GIT_COMMIT_EMAIL = "lure@elara.ws"
WEBHOOK_PASSWORD_HASH="${PASSWORD_HASH}" WEBHOOK_PASSWORD_HASH = "${PASSWORD_HASH}"
// Hack to force Nomad to re-deploy the service // Hack to force Nomad to re-deploy the service
// instead of ignoring it // instead of ignoring it
@ -41,10 +41,10 @@ job "lure-updater" {
config { config {
image = "alpine:latest" image = "alpine:latest"
ports = ["webhook"]
volumes = ["local/lure-updater/:/opt/lure-updater:ro"]
command = "/opt/lure-updater/lure-updater" command = "/opt/lure-updater/lure-updater"
args = ["-dE"] args = ["-dE"]
ports = ["webhook"]
volumes = ["local/lure-updater/:/opt/lure-updater:ro"]
} }
artifact { artifact {