Hi! I'm trying to run multiple Nomad clusters with the servers inside Kubernetes and the clients running outside. I've been struggling in properly routing the RPC calls from clients to servers. My best idea so far has been to enable TLS and then perform routing of the TCP requests based on SNI. The problem here is that the SNI is only set in case `verify_server_hostname` is enabled on the client and in that case, it's always set to `server.{region}.nomad`. To route on this, I would have to have unique region names across all Nomad clusters, which is suboptimal as preferably these clusters would be fully independent.
Does anyone have an idea how to achieve this? Thanks!