From 198d269d37071089fa25f51c2e2d1093ac24d46d Mon Sep 17 00:00:00 2001 From: wizzdom Date: Thu, 24 Oct 2024 16:01:33 +0100 Subject: [PATCH] add github actions runner for CI/CD deployments with Nomad (#71) --- jobs/services/gh-actions-runner.hcl | 59 +++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 jobs/services/gh-actions-runner.hcl diff --git a/jobs/services/gh-actions-runner.hcl b/jobs/services/gh-actions-runner.hcl new file mode 100644 index 0000000..eb94ef5 --- /dev/null +++ b/jobs/services/gh-actions-runner.hcl @@ -0,0 +1,59 @@ +job "github-actions-runner" { + datacenters = ["aperture"] + + type = "service" + + meta { + version = "2.320.0" + sha256 = "93ac1b7ce743ee85b5d386f5c1787385ef07b3d7c728ff66ce0d3813d5f46900" + } + + group "github-actions" { + count = 3 + + spread { + attribute = "${node.unique.id}" + weight = 100 + } + + task "actions-runner" { + driver = "raw_exec" + # user = "nomad" + + config { + command = "/bin/bash" + args = ["${NOMAD_TASK_DIR}/bootstrap.sh"] + } + template { + data = <