标签: consul consul-template
有没有办法从Consul服务目录中只检索3个IP?
Mysql -u root -p Drop yourDBName;
以上代码获取所有通过Web服务检查的逗号分隔IP(我有100个IP)。我只需要前3个IP。
-W
答案 0 :(得分:0)
{{range $index, $service := service "web"}}{{if gt $index 3}}{{.Address}}:{{ .Port }},{{end}}{{end}}
应该这样做。