Open
Description
I'll try to describe my use case
I have number of environments for dev/testing that contain the same services in each one. Each environment runs in its kubernetes namespace in the same cluster. I want the upstream to only return copies of the connect service located in the same namespace. I can created a prepared query using templating that returns the desired result
{
"name": "",
"Template": {
"Type": "name_prefix_match",
"Regexp": "^(example-service)-(.*?)$"
},
"Service": {
"Service": "${match(1)}",
"Tags": ["${match(2)}"],
"Connect": true
}
}
Where match(0)
is the name of the service and match(1)
is the desired namespace. This works since I tag all the services with the namespace.
Please let me know if that makes sense, I'm happy to expand if desired.