open-nomad/e2e/nodedrain/input/drain_migrate.nomad
2023-04-10 15:36:59 +00:00

34 lines
571 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "drain_migrate" {
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "group" {
ephemeral_disk {
migrate = true
size = "101"
}
task "task" {
driver = "docker"
config {
image = "busybox:1"
command = "/bin/sh"
args = ["-c", "echo \"data from $NOMAD_ALLOC_ID\" >> /alloc/data/migrate.txt && sleep 120"]
}
resources {
cpu = 256
memory = 128
}
}
}
}