Skip to content

Commit 38d2d9f

Browse files
authored
Update entrypoint scripts and document to align with new CLI (#1097)
* Update entrypoint scripts and document to align with new CLI Update entrypoint scripts for k8s, docker v2plugin to align with new CLI, update documents, k8s config yaml. Drive by update vagrantfile, kubeadm_test, utils/configs.go to make codes more readable. This commit also makes netplugin and netmaster to use etcd at http://127.0.0.1:2379 if neither etcd or consul endpoints are provided. Also make v2plugin by default as netplugin role. For `startcontiv.sh`, the entrypoint script for v2plugin, it changed ovs-db creating to reuse the logic from k8s `ovsInit.sh`, which doesn't drop db files on every restarting. Signed-off-by: Wei Tie <[email protected]>
1 parent 51e5f6f commit 38d2d9f

File tree

16 files changed

+648
-376
lines changed

16 files changed

+648
-376
lines changed

install/HowtoSetupContiv.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ COMMANDS:
3434
GLOBAL OPTIONS:
3535
--consul-endpoints value, --consul value a comma-delimited list of netplugin consul endpoints [$CONTIV_NETPLUGIN_CONSUL_ENDPOINTS]
3636
--ctrl-ip value set netplugin control ip for control plane communication (default: <host-ip-from-local-resolver>) [$CONTIV_NETPLUGIN_CONTROL_IP]
37-
--etcd-endpoints value, --etcd value a comma-delimited list of netplugin etcd endpoints [$CONTIV_NETPLUGIN_ETCD_ENDPOINTS]
37+
--etcd-endpoints value, --etcd value a comma-delimited list of netplugin etcd endpoints (default: http://127.0.0.1:2379) [$CONTIV_NETPLUGIN_ETCD_ENDPOINTS]
3838
--fwdmode value, --forward-mode value set netplugin forwarding network mode, options: [bridge, routing] [$CONTIV_NETPLUGIN_FORWARD_MODE]
3939
--host value, --host-label value set netplugin host to identify itself (default: <host-name-reported-by-the-kernel>) [$CONTIV_NETPLUGIN_HOST]
4040
--log-level value set netplugin log level, options: [DEBUG, INFO, WARN, ERROR] (default: "INFO") [$CONTIV_NETPLUGIN_LOG_LEVEL]
@@ -73,7 +73,7 @@ COMMANDS:
7373
7474
GLOBAL OPTIONS:
7575
--consul-endpoints value, --consul value a comma-delimited list of netmaster consul endpoints [$CONTIV_NETMASTER_CONSUL_ENDPOINTS]
76-
--etcd-endpoints value, --etcd value a comma-delimited list of netmaster etcd endpoints [$CONTIV_NETMASTER_ETCD_ENDPOINTS]
76+
--etcd-endpoints value, --etcd value a comma-delimited list of netmaster etcd endpoints (default: http://127.0.0.1:2379) [$CONTIV_NETMASTER_ETCD_ENDPOINTS]
7777
--external-address value, --listen-url value set netmaster external address to listen on, used for general API service (default: "0.0.0.0:9999") [$CONTIV_NETMASTER_EXTERNAL_ADDRESS]
7878
--fwdmode value, --forward-mode value set netmaster forwarding network mode, options: [bridge, routing] [$CONTIV_NETMASTER_FORWARD_MODE]
7979
--infra value, --infra-type value set netmaster infra type, options [aci, default] (default: "default") [$CONTIV_NETMASTER_INFRA]

install/k8s/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ Install kubernetes 1.6 or higher using http://kubernetes.io/docs/getting-started
99
* Replace all instances of `__NETMASTER_IP__` in contiv/contiv.yaml with the master IP.
1010
* Replace `__VLAN_IF__` with the data plane interface.
1111
If there is no requirement to create vlan based networks there is no need for a seperate data interface and `__VLAN_IF__` can be set to "". If vlan based networks are to be created then a separate data interface is mandatory which can be set appropriately.
12-
* Optional: Replace the contiv version(v0.1-11-30-2016.20-08-20.UTC) with the desired release/test version.
12+
* Optional: Replace the contiv version(1.1.7) with the desired release/test version.
1313
* Optional ACI only steps:
1414
- Replace __APIC_xxx__ fields with their corresponding values.
1515
- Default value for __APIC_EPG_BRIDGE_DOMAIN__ is "not_specified"
1616
- Default value for __APIC_CONTRACTS_UNRESTRICTED_MODE__ is "no"
1717
- Password based authentication: When using password based authentication, APIC_CERT_DN fields must be deleted.
18-
- Certificate based authentication:
19-
- When using certificate based authentication, APIC_PASSWORD can be empty.
20-
- Copy the certificate to a file named aci.key.
21-
- Create a secret by running the following on the management node
22-
```sh
18+
- Certificate based authentication:
19+
- When using certificate based authentication, APIC_PASSWORD can be empty.
20+
- Copy the certificate to a file named aci.key.
21+
- Create a secret by running the following on the management node
22+
```sh
2323
kubectl create secret generic aci.key --from-file=<path name of aci.key file> -n kube-system
2424
```
2525
* On the management node, run

install/k8s/contiv/contiv.yaml

+70-20
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,21 @@ metadata:
88
name: contiv-config
99
namespace: kube-system
1010
data:
11+
contiv_mode: kubernetes
12+
contiv_fwdmode: routing
13+
contiv_netmode: vxlan
1114
# The location of your cluster store. This is set to the
1215
# avdertise-client value below from the contiv-etcd service.
1316
# Change it to an external etcd/consul instance if required.
14-
cluster_store: "etcd://__NETMASTER_IP__:6666"
17+
contiv_etcd: "http://__NETMASTER_IP__:6666"
1518
# The CNI network configuration to install on each node.
16-
cni_config: |-
19+
contiv_cni_config: |-
1720
{
1821
"cniVersion": "0.1.0",
1922
"name": "contiv-net",
2023
"type": "contivk8s"
2124
}
22-
config: |-
25+
contiv_k8s_config: |-
2326
{
2427
"K8S_API_SERVER": "https://__NETMASTER_IP__:6443",
2528
"K8S_CA": "/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
@@ -29,7 +32,7 @@ data:
2932
}
3033
---
3134

32-
# This manifest installs the Contiv etcd on the kubeadm master.
35+
# This manifest installs the Contiv etcd on the kubeadm master.
3336
# If using an external etcd instance, this can be deleted. This uses a DaemonSet
3437
# to force it to run on the master even when the master isn't schedulable, and uses
3538
# nodeSelector to ensure it only runs on the master.
@@ -95,31 +98,46 @@ spec:
9598
# container programs network policy and routes on each
9699
# host.
97100
- name: contiv-netplugin
98-
image: contiv/netplugin:v1.0.0-alpha-01-28-2017.10-23-11.UTC
99-
args:
100-
- -pkubernetes
101+
image: contiv/netplugin:1.1.7
101102
env:
102-
- name: VLAN_IF
103+
- name: CONTIV_ROLE
104+
value: netplugin
105+
- name: CONTIV_NETPLUGIN_VLAN_UPLINKS
103106
value: __VLAN_IF__
104-
- name: VTEP_IP
107+
- name: CONTIV_NETPLUGIN_MODE
108+
valueFrom:
109+
configMapKeyRef:
110+
name: contiv-config
111+
key: contiv_mode
112+
- name: CONTIV_NETPLUGIN_VTEP_IP
105113
valueFrom:
106114
fieldRef:
107115
fieldPath: status.podIP
108-
- name: CONTIV_ETCD
116+
- name: CONTIV_NETPLUGIN_ETCD_ENDPOINTS
109117
valueFrom:
110118
configMapKeyRef:
111119
name: contiv-config
112-
key: cluster_store
120+
key: contiv_etcd
113121
- name: CONTIV_CNI_CONFIG
114122
valueFrom:
115123
configMapKeyRef:
116124
name: contiv-config
117-
key: cni_config
118-
- name: CONTIV_CONFIG
125+
key: contiv_cni_config
126+
- name: CONTIV_K8S_CONFIG
119127
valueFrom:
120128
configMapKeyRef:
121129
name: contiv-config
122-
key: config
130+
key: contiv_k8s_config
131+
- name: CONTIV_NETPLUGIN_FORWARD_MODE
132+
valueFrom:
133+
configMapKeyRef:
134+
name: contiv-config
135+
key: contiv_fwdmode
136+
- name: CONTIV_NETPLUGIN_NET_MODE
137+
valueFrom:
138+
configMapKeyRef:
139+
name: contiv-config
140+
key: contiv_netmode
123141
securityContext:
124142
privileged: true
125143
volumeMounts:
@@ -135,6 +153,9 @@ spec:
135153
- mountPath: /var/contiv
136154
name: var-contiv
137155
readOnly: false
156+
- mountPath: /var/log/contiv
157+
name: var-log-contiv
158+
readOnly: false
138159
- mountPath: /etc/kubernetes/pki
139160
name: etc-kubernetes-pki
140161
readOnly: false
@@ -174,6 +195,9 @@ spec:
174195
- name: etc-cni-dir
175196
hostPath:
176197
path: /etc/cni/net.d/
198+
- name: var-log-contiv
199+
hostPath:
200+
path: /var/log/contiv
177201
---
178202

179203
# This manifest deploys the Contiv API Server on Kubernetes.
@@ -209,16 +233,35 @@ spec:
209233
hostPID: true
210234
containers:
211235
- name: contiv-netmaster
212-
image: contiv/netplugin:v1.0.0-alpha-01-28-2017.10-23-11.UTC
213-
args:
214-
- -m
215-
- -pkubernetes
236+
image: contiv/netplugin:1.1.7
216237
env:
217-
- name: CONTIV_ETCD
238+
- name: CONTIV_ROLE
239+
value: netmaster
240+
- name: CONTIV_NETMASTER_MODE
241+
valueFrom:
242+
configMapKeyRef:
243+
name: contiv-config
244+
key: contiv_mode
245+
- name: CONTIV_NETMASTER_ETCD_ENDPOINTS
246+
valueFrom:
247+
configMapKeyRef:
248+
name: contiv-config
249+
key: contiv_etcd
250+
- name: CONTIV_K8S_CONFIG
251+
valueFrom:
252+
configMapKeyRef:
253+
name: contiv-config
254+
key: contiv_k8s_config
255+
- name: CONTIV_NETMASTER_FORWARD_MODE
218256
valueFrom:
219257
configMapKeyRef:
220258
name: contiv-config
221-
key: cluster_store
259+
key: contiv_fwdmode
260+
- name: CONTIV_NETMASTER_NET_MODE
261+
valueFrom:
262+
configMapKeyRef:
263+
name: contiv-config
264+
key: contiv_netmode
222265
securityContext:
223266
privileged: true
224267
volumeMounts:
@@ -231,6 +274,9 @@ spec:
231274
- mountPath: /var/run
232275
name: var-run
233276
readOnly: false
277+
- mountPath: /var/log/contiv
278+
name: var-log-contiv
279+
readOnly: false
234280
- mountPath: /var/contiv
235281
name: var-contiv
236282
readOnly: false
@@ -240,6 +286,7 @@ spec:
240286
- mountPath: /opt/cni/bin
241287
name: cni-bin-dir
242288
readOnly: false
289+
243290
volumes:
244291
# Used by contiv-netmaster
245292
- name: etc-openvswitch
@@ -260,4 +307,7 @@ spec:
260307
- name: cni-bin-dir
261308
hostPath:
262309
path: /opt/cni/bin
310+
- name: var-log-contiv
311+
hostPath:
312+
path: /var/log/contiv
263313
---

0 commit comments

Comments
 (0)