From 568b1b5e5733c533cbe4f19dcda53687f9d0739f Mon Sep 17 00:00:00 2001 From: Ben Martin Date: Tue, 4 Jun 2024 02:10:08 +0100 Subject: [PATCH] Delete modules/dummy/jobspec.hcl --- modules/dummy/jobspec.hcl | 44 --------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 modules/dummy/jobspec.hcl diff --git a/modules/dummy/jobspec.hcl b/modules/dummy/jobspec.hcl deleted file mode 100644 index 0689902..0000000 --- a/modules/dummy/jobspec.hcl +++ /dev/null @@ -1,44 +0,0 @@ -job "hello-world" { - datacenters = ["*"] - meta { - foo = "bar" - } - group "servers" { - count = 1 - network { - port "www" { - to = 8001 - } - } - service { - provider = "nomad" - port = "www" - } - task "web" { - driver = "docker" - config { - image = "busybox:1" - command = "httpd" - args = ["-v", "-f", "-p", "${NOMAD_PORT_www}", "-h", "/local"] - ports = ["www"] - } - template { - data = <<-EOF -

Hello, Nomad!

- - EOF - destination = "local/index.html" - } - resources { - cpu = 50 - memory = 64 - } - } - } -} \ No newline at end of file