Can't find Nomad client, but I can see all servers and I also can find the clients in Consul.
Nomad config
data_dir = "/opt/nomad/data"
server {
enabled = true
bootstrap_expect = 3
retry_join = ["provider=aws tag_key=Function tag_value=consul_client"]
}
client {
enabled = true
}
Clients in Consul UI:
Servers in Nomad UI:
Clients in Nomad UI:
So why do I see only one Client in the last screenshot?
figured it out, I should make separate config files for server and client instead of combining them together.