forked from Azure/azure-container-networking
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-windows.conflist
43 lines (43 loc) · 986 Bytes
/
azure-windows.conflist
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
43
{
"cniVersion":"0.3.0",
"name":"azure",
"plugins":[
{
"type":"azure-vnet",
"mode":"bridge",
"bridge":"azure0",
"ipam":{
"type":"azure-vnet-ipam"
},
"dns":{
"Nameservers":[
"168.63.129.16",
"10.0.0.10"
],
"Search":[
"svc.cluster.local"
]
},
"AdditionalArgs":[
{
"Name":"EndpointPolicy",
"Value":{
"Type":"OutBoundNAT",
"ExceptionList":[
"10.240.0.0/16",
"10.0.0.0/8"
]
}
},
{
"Name":"EndpointPolicy",
"Value":{
"Type":"ROUTE",
"DestinationPrefix":"10.0.0.0/8",
"NeedEncap":true
}
}
]
}
]
}