-
Notifications
You must be signed in to change notification settings - Fork 0
/
fqdn_service_discovery.json
42 lines (41 loc) · 1.28 KB
/
fqdn_service_discovery.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"class": "AS3",
"action": "deploy",
"persist": true,
"declaration": {
"class": "ADC",
"schemaVersion": "3.0.0",
"id": "example-declaration-01",
"label": "Sample 1",
"remark": "Simple HTTP application with round robin pool",
"www": {
"class": "Tenant",
"Application_1": {
"class": "Application",
"template": "http",
"serviceMain": {
"class": "Service_HTTP",
"virtualAddresses": [
"172.18.2.39"
],
"pool": "web_pool"
},
"web_pool": {
"class": "Pool",
"monitors": [
"http"
],
"members": [
{
"addressDiscovery": "fqdn",
"addressRealm": "private",
"autoPopulate": true,
"servicePort": 8080,
"hostname": "demo-app-a.cody-local"
}
]
}
}
}
}
}