You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardexpand all lines: install/HowtoSetupContiv.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ COMMANDS:
34
34
GLOBAL OPTIONS:
35
35
--consul-endpoints value, --consul value a comma-delimited list of netplugin consul endpoints [$CONTIV_NETPLUGIN_CONSUL_ENDPOINTS]
36
36
--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]
38
38
--fwdmode value, --forward-mode value set netplugin forwarding network mode, options: [bridge, routing] [$CONTIV_NETPLUGIN_FORWARD_MODE]
39
39
--host value, --host-label value set netplugin host to identify itself (default: <host-name-reported-by-the-kernel>) [$CONTIV_NETPLUGIN_HOST]
40
40
--log-level value set netplugin log level, options: [DEBUG, INFO, WARN, ERROR] (default: "INFO") [$CONTIV_NETPLUGIN_LOG_LEVEL]
@@ -73,7 +73,7 @@ COMMANDS:
73
73
74
74
GLOBAL OPTIONS:
75
75
--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]
77
77
--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]
78
78
--fwdmode value, --forward-mode value set netmaster forwarding network mode, options: [bridge, routing] [$CONTIV_NETMASTER_FORWARD_MODE]
79
79
--infra value, --infra-type value set netmaster infra type, options [aci, default] (default: "default") [$CONTIV_NETMASTER_INFRA]
Copy file name to clipboardexpand all lines: install/k8s/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -9,17 +9,17 @@ Install kubernetes 1.6 or higher using http://kubernetes.io/docs/getting-started
9
9
* Replace all instances of `__NETMASTER_IP__` in contiv/contiv.yaml with the master IP.
10
10
* Replace `__VLAN_IF__` with the data plane interface.
11
11
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.
13
13
* Optional ACI only steps:
14
14
- Replace __APIC_xxx__ fields with their corresponding values.
15
15
- Default value for __APIC_EPG_BRIDGE_DOMAIN__ is "not_specified"
16
16
- Default value for __APIC_CONTRACTS_UNRESTRICTED_MODE__ is "no"
17
17
- 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
23
23
kubectl create secret generic aci.key --from-file=<path name of aci.key file> -n kube-system
0 commit comments