file
File Format
YAML
- cluster: service-a
instances:
- host: localhost
port: 9080
- host: 10.0.2.237
port: 9080
- cluster: service-b
instances:
- host: 10.1.1.45
port: 443JSON
[
{
"cluster": "service-a",
"instances": [
{
"host": "localhost",
"port": 9080
},
{
"host": "10.0.2.237",
"port": 9080
}
]
},
{
"cluster": "service-b",
"instances": [
{
"host": "10.1.1.45",
"port": 443
}
]
}
]Last updated
Was this helpful?