Files
nomad/e2e/workload_id/input/nobody.nomad
Piotr Kazmierczak abe9c0803a e2e: unflake TestWorkloadIdentity/testNobody (#20499)
sometimes the container quits too fast
2024-04-30 18:17:14 +02:00

37 lines
672 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
job "nobodyid" {
datacenters = ["dc1"]
type = "batch"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "nobodyid" {
# nobody task should have a file owned by nobody with -rw------- perms
task "nobody" {
user = "nobody"
identity {
file = true
}
driver = "docker"
config {
image = "bash:5"
args = ["-c", "stat -c 'perms=%#a username=%U' secrets/nomad_token; echo done; sleep 2"]
}
resources {
cpu = 16
memory = 32
disk = 64
}
}
}
}