Hello,
In Kubernetes we can create operator and based on pod metadata (for example ingress=yes) inject some data to pod.
Is it possible to implement something simular in Nomad? For example, if I have:
meta {
ingress= "yes"
}
I wanted to add ingress to job in runtime:
group "service-ingress" {
network {
mode = "bridge"
port "http" {
to = 8080
}
}
Is it possible?