在 Nomad 中找不到 Nomad 客户端 UI

Can't find Nomad clients in the Nomad UI

找不到 Nomad 客户端,但我可以看到所有服务器,我也可以在 Consul 中找到客户端。

游牧配置

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
}

Consul 中的客户 UI:


Nomad 中的服务器 UI:

Nomad 中的客户UI:

为什么我在最后一张截图中只看到一个客户端?

明白了,我应该为服务器和客户端制作单独的配置文件,而不是将它们组合在一起。