open-nomad/jobspec/test-fixtures/tg-service-connect-resources.hcl

21 lines
382 B
HCL
Raw Normal View History

job "sidecar_task_resources" {
type = "service"
group "group" {
service {
name = "example"
connect {
# should still work without sidecar_service being set (i.e. connect gateway)
sidecar_task {
resources {
cpu = 111
memory = 222
memory_max = 333
}
}
}
}
}
}