Minor updates
parent
fd48b3ba9f
commit
333ff226cc
|
@ -2,12 +2,17 @@
|
||||||
|
|
||||||
We chose to use CNI - [weave](https://www.weave.works/docs/net/latest/kubernetes/kube-addon/) as our networking option.
|
We chose to use CNI - [weave](https://www.weave.works/docs/net/latest/kubernetes/kube-addon/) as our networking option.
|
||||||
|
|
||||||
|
### Install CNI plugins
|
||||||
|
|
||||||
Download the CNI Plugins required for weave on each of the worker nodes - `worker-1` and `worker-2`
|
Download the CNI Plugins required for weave on each of the worker nodes - `worker-1` and `worker-2`
|
||||||
|
|
||||||
`wget https://github.com/containernetworking/plugins/releases/download/v0.7.5/cni-plugins-amd64-v0.7.5.tgz`
|
`wget https://github.com/containernetworking/plugins/releases/download/v0.7.5/cni-plugins-amd64-v0.7.5.tgz`
|
||||||
|
|
||||||
Extract it to /opt/cni/bin directory
|
Extract it to /opt/cni/bin directory
|
||||||
|
|
||||||
`sudo tar -xzvf cni-plugins-amd64-v0.7.5.tgz --directory /opt/cni/bin/``
|
`sudo tar -xzvf cni-plugins-amd64-v0.7.5.tgz --directory /opt/cni/bin/``
|
||||||
|
|
||||||
|
### Deploy Weave Network
|
||||||
|
|
||||||
Deploy weave network. Run only once on the `master` node.
|
Deploy weave network. Run only once on the `master` node.
|
||||||
`kubectl apply -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version | base64 | tr -d '\n')"`
|
`kubectl apply -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version | base64 | tr -d '\n')"`
|
||||||
|
|
Loading…
Reference in New Issue