forked from contiv/netplugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.template
149 lines (149 loc) · 3.88 KB
/
config.template
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
{
"manifestVersion": "v0",
"description": "Contiv network plugin for Docker",
"documentation": "https://contiv.github.io",
"entrypoint": ["/startcontiv.sh"],
"network": {
"type": "host"
},
"env": [
{
"Description": "To enable debug mode, set to '-debug'",
"Name": "dbg_flag",
"Settable": [
"value"
],
"Value": ""
},
{
"Description": "Change the directory where the logs are saved",
"Name": "log_dir",
"Settable": [
"value"
],
"Value": "/var/log/contiv"
},
{
"Description": "VLAN uplink interface used by OVS",
"Name": "iflist",
"Settable": [
"value"
],
"Value": ""
},
{
"Description": "Etcd or Consul cluster store url",
"Name": "cluster_store",
"Settable": [
"value"
],
"Value": "etcd://localhost:2379"
},
{
"Description": "Plugin mode set to docker or swarm-mode",
"Name": "plugin_mode",
"Settable": [
"value"
],
"Value": "swarm-mode"
},
{
"Description": "Local IP address to be used by netplugin for control communication",
"Name": "ctrl_ip",
"Settable": [
"value"
],
"Value": "none"
},
{
"Description": "Local VTEP IP address to be used by netplugin",
"Name": "vtep_ip",
"Settable": [
"value"
],
"Value": "none"
},
{
"Description": "Vxlan UDP port number used for encapsulating vxlan packets",
"Name": "vxlan_port",
"Settable": [
"value"
],
"Value": "8742"
},
{
"Description": "In 'master' role, plugin runs netmaster and netplugin",
"Name": "plugin_role",
"Settable": [
"value"
],
"Value": "master"
},
{
"Description": "Netmaster url to listen http requests on",
"Name": "listen_url",
"Settable": [
"value"
],
"Value": ":9999"
},
{
"Description": "Netmaster url for control messages",
"Name": "control_url",
"Settable": [
"value"
],
"Value": ":9999"
},
{
"Description": "Network Driver name for requests to dockerd. Should be same as name:tag of the plugin",
"Name": "plugin_name",
"Settable": [
"value"
],
## Do not change the default value, this will be replaced with $CONTIV_V2PLUGIN_NAME
"Value": "__CONTIV_V2PLUGIN_NAME__"
},
{
"Description": "Forwarding mode for netplugin",
"Name": "fwd_mode",
"Settable": [
"value"
],
"Value": ""
}
],
"mounts": [
{
"type": "bind",
"options": ["rbind"],
"source": "/etc/openvswitch",
"destination": "/etc/openvswitch"
},
{
"type": "bind",
"options": ["rbind"],
"source": "/var/log",
"destination": "/var/log"
},
{
"type": "bind",
"options": ["rbind"],
"source": "/var/run",
"destination": "/var/run"
},
{
"type": "bind",
"options": ["rbind"],
"source": "/lib/modules",
"destination": "/lib/modules"
}
],
"interface" : {
"types": ["docker.networkdriver/1.0", "docker.ipamdriver/1.0"],
"socket": "netplugin.sock"
},
"Linux": {
"Capabilities": ["CAP_SYS_ADMIN", "CAP_NET_ADMIN", "CAP_SYS_MODULE"]
}
}