-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathconfig.json
160 lines (160 loc) · 3.71 KB
/
config.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"Description":"Infoblox IPAM plugin for Docker",
"Documentation":"http://github.com/infobloxopen/docker-infoblox",
"Entrypoint":[
"/ipam-plugin"
],
"Interface":{
"Socket":"infoblox.sock",
"Types":[
"docker.ipamdriver/1.0"
]
},
"Network":{
"Type":"host"
},
"Env":[
{
"Description": "NIOS Grid host IP or Hostname",
"Name": "GRID_HOST",
"Settable": [
"value"
]
},
{
"Description": "Infoblox WAPI Port",
"Name": "WAPI_PORT",
"Settable": [
"value"
]
},
{
"Description": "Infoblox WAPI Username",
"Name": "WAPI_USERNAME",
"Settable": [
"value"
]
},
{
"Description": "Infoblox WAPI Password",
"Name": "WAPI_PASSWORD",
"Settable": [
"value"
]
},
{
"Description": "Infoblox WAPI Version",
"Name": "WAPI_VERSION",
"Settable": [
"value"
]
},
{
"Description": "Specifies whether to verify server certificate or not",
"Name": "SSL_VERIFY",
"Settable": [
"value"
]
},
{
"Description": "Infoblox WAPI request timeout in seconds",
"Name": "HTTP_REQUEST_TIMEOUT",
"Settable": [
"value"
]
},
{
"Description": "Infoblox WAPI request connection pool size",
"Name": "HTTP_POOL_CONNECTIONS",
"Settable": [
"value"
]
},
{
"Description": "Infoblox Network View for Global Address Space",
"Name": "GLOBAL_VIEW",
"Settable": [
"value"
]
},
{
"Description": "Subnets will be allocated from this container when --subnet is not specified during network creation",
"Name": "GLOBAL_NETWORK_CONTAINER",
"Settable": [
"value"
]
},
{
"Description": "The default CIDR prefix length when allocating a global subnet",
"Name": "GLOBAL_PREFIX_LENGTH",
"Settable": [
"value"
]
},
{
"Description": "Infoblox Network View for Local Address Space",
"Name": "LOCAL_VIEW",
"Settable": [
"value"
]
},
{
"Description": "Subnets will be allocated from this container when --subnet is not specified during network creation",
"Name": "LOCAL_NETWORK_CONTAINER",
"Settable": [
"value"
]
},
{
"Description": "The default CIDR prefix length when allocating a local subnet",
"Name": "LOCAL_PREFIX_LENGTH",
"Settable": [
"value"
]
},
{
"Description": "Name of configuration file in /etc/infoblox directory",
"Name": "CONF_FILE_NAME",
"Settable": [
"value"
]
},
{
"Description": "Sets log level to debug",
"Name": "DEBUG",
"Settable": [
"value"
]
},
{
"Description": "Docker API Version to access Docker Remote API",
"Name": "DOCKER_API_VERSION",
"Settable": [
"value"
],
"Value" : "1.22"
}
],
"Mounts":[
{
"Description":"Location of the Infoblox config file (/etc/infoblox/docker-infoblox.conf)",
"Source":"/etc/infoblox",
"Destination":"/etc/infoblox",
"Type":"bind",
"Options":[
"rbind"
]
},
{
"Description":"/var/run/docker.sock is required to make call to Docker",
"Source":"/var/run",
"Destination":"/var/run",
"Type":"bind",
"Options":[
"rbind"
]
}
],
"Linux":{
}
}