Files
nomad/e2e/consul/input/service_reversion.nomad
2023-08-10 17:27:29 -05:00

39 lines
592 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
variable "service" {
type = string
}
job "service-reversion" {
datacenters = ["dc1"]
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "sleep" {
service {
name = "${var.service}"
}
task "busybox" {
driver = "docker"
config {
image = "busybox:1"
command = "sleep"
args = ["infinity"]
}
resources {
cpu = 16
memory = 32
disk = 64
}
}
}
}