2015-07-12 12:04:52 +08:00
<!-- BEGIN MUNGE: UNVERSIONED_WARNING -->
<!-- BEGIN STRIP_FOR_RELEASE -->
2015-07-17 01:02:26 +08:00
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< h2 > PLEASE NOTE: This document applies to the HEAD of the source tree< / h2 >
If you are using a released version of Kubernetes, you should
refer to the docs that go with that version.
2015-12-15 02:37:38 +08:00
<!-- TAG RELEASE_LINK, added by the munger automatically -->
2015-07-17 01:02:26 +08:00
< strong >
2015-11-04 02:17:57 +08:00
The latest release of this document can be found
[here ](http://releases.k8s.io/release-1.1/docs/getting-started-guides/docker-multinode/worker.md ).
2015-07-17 01:02:26 +08:00
Documentation for other releases can be found at
[releases.k8s.io ](http://releases.k8s.io ).
< / strong >
--
2015-07-14 06:15:35 +08:00
2015-07-12 12:04:52 +08:00
<!-- END STRIP_FOR_RELEASE -->
<!-- END MUNGE: UNVERSIONED_WARNING -->
2015-07-18 06:35:41 +08:00
2015-04-07 12:47:04 +08:00
## Adding a Kubernetes worker node via Docker.
2015-07-14 11:58:33 +08:00
2015-04-07 12:47:04 +08:00
These instructions are very similar to the master set-up above, but they are duplicated for clarity.
You need to repeat these instructions for each node you want to join the cluster.
2016-01-11 22:45:56 +08:00
We will assume that you have the IP address of the master in `${MASTER_IP}` that you created in the [master instructions ](master.md ). We'll need to run several versioned Kubernetes components, so we'll assume that the version we want
2016-01-30 05:01:49 +08:00
to run is `${K8S_VERSION}` , which should hold a released version of Kubernetes >= "1.2.0-alpha.6"
2016-01-11 22:45:56 +08:00
Enviroinment variables used:
```sh
export MASTER_IP=< the_master_ip_here >
2016-01-30 05:01:49 +08:00
export K8S_VERSION=< your_k8s_version ( e . g . 1 . 2 . 0-alpha . 6 ) >
2016-01-11 22:45:56 +08:00
export FLANNEL_VERSION=< your_flannel_version ( e . g . 0 . 5 . 5 ) >
export FLANNEL_IFACE=< flannel_interface ( defaults to eth0 ) >
2016-02-02 21:34:38 +08:00
export FLANNEL_IPMASQ=< flannel_ipmasq_flag ( defaults to true ) >
2016-01-11 22:45:56 +08:00
```
2015-04-07 12:47:04 +08:00
For each worker node, there are three steps:
2015-07-19 13:58:13 +08:00
* [Set up `flanneld` on the worker node ](#set-up-flanneld-on-the-worker-node )
2015-07-21 04:45:36 +08:00
* [Start Kubernetes on the worker node ](#start-kubernetes-on-the-worker-node )
2015-04-07 12:47:04 +08:00
* [Add the worker to the cluster ](#add-the-node-to-the-cluster )
### Set up Flanneld on the worker node
2015-07-18 06:35:41 +08:00
2015-04-07 12:47:04 +08:00
As before, the Flannel daemon is going to provide network connectivity.
2015-07-14 11:58:33 +08:00
_Note_:
2016-01-11 22:45:56 +08:00
This guide expects **Docker 1.7.1 or higher** .
2015-07-14 11:58:33 +08:00
2015-07-14 02:11:34 +08:00
#### Set up a bootstrap docker
2015-07-18 06:35:41 +08:00
2015-04-07 12:47:04 +08:00
As previously, we need a second instance of the Docker daemon running to bootstrap the flannel networking.
Run:
2015-07-17 10:01:02 +08:00
2015-04-07 12:47:04 +08:00
```sh
sudo sh -c 'docker -d -H unix:///var/run/docker-bootstrap.sock -p /var/run/docker-bootstrap.pid --iptables=false --ip-masq=false --bridge=none --graph=/var/lib/docker-bootstrap 2> /var/log/docker-bootstrap.log 1> /dev/null & '
```
2016-01-29 03:35:14 +08:00
_If you have Docker 1.8.0 or higher run this instead_
```sh
sudo sh -c 'docker daemon -H unix:///var/run/docker-bootstrap.sock -p /var/run/docker-bootstrap.pid --iptables=false --ip-masq=false --bridge=none --graph=/var/lib/docker-bootstrap 2> /var/log/docker-bootstrap.log 1> /dev/null & '
```
2015-04-07 12:47:04 +08:00
_Important Note_:
If you are running this on a long running system, rather than experimenting, you should run the bootstrap Docker instance under something like SysV init, upstart or systemd so that it is restarted
across reboots and failures.
#### Bring down Docker
2015-07-18 06:35:41 +08:00
2015-04-07 12:47:04 +08:00
To re-configure Docker to use flannel, we need to take docker down, run flannel and then restart Docker.
Turning down Docker is system dependent, it may be:
```sh
sudo /etc/init.d/docker stop
```
or
```sh
sudo systemctl stop docker
```
or it may be something else.
#### Run flannel
Now run flanneld itself, this call is slightly different from the above, since we point it at the etcd instance on the master.
2015-07-17 10:01:02 +08:00
2015-04-07 12:47:04 +08:00
```sh
2016-01-11 22:45:56 +08:00
sudo docker -H unix:///var/run/docker-bootstrap.sock run -d \
--net=host \
--privileged \
-v /dev/net:/dev/net \
quay.io/coreos/flannel:${FLANNEL_VERSION} \
/opt/bin/flanneld \
2016-02-02 21:34:38 +08:00
--ip-masq=${FLANNEL_IPMASQ} \
2016-01-11 22:45:56 +08:00
--etcd-endpoints=http://${MASTER_IP}:4001 \
--iface=${FLANNEL_IFACE}
2015-04-07 12:47:04 +08:00
```
2016-01-11 22:45:56 +08:00
The previous command should have printed a really long hash, the container id, copy this hash.
2015-04-07 12:47:04 +08:00
Now get the subnet settings from flannel:
2015-07-17 10:01:02 +08:00
2015-07-19 10:05:35 +08:00
```sh
2015-04-07 12:47:04 +08:00
sudo docker -H unix:///var/run/docker-bootstrap.sock exec < really-long-hash-from-above-here > cat /run/flannel/subnet.env
```
#### Edit the docker configuration
2015-07-18 06:35:41 +08:00
2015-04-07 12:47:04 +08:00
You now need to edit the docker configuration to activate new flags. Again, this is system specific.
2015-07-19 13:58:13 +08:00
This may be in `/etc/default/docker` or `/etc/systemd/service/docker.service` or it may be elsewhere.
2015-04-07 12:47:04 +08:00
2015-06-11 13:11:44 +08:00
Regardless, you need to add the following to the docker command line:
2015-07-17 10:01:02 +08:00
2015-04-07 12:47:04 +08:00
```sh
--bip=${FLANNEL_SUBNET} --mtu=${FLANNEL_MTU}
```
#### Remove the existing Docker bridge
2015-07-18 06:35:41 +08:00
2015-07-19 13:58:13 +08:00
Docker creates a bridge named `docker0` by default. You need to remove this:
2015-04-07 12:47:04 +08:00
```sh
sudo /sbin/ifconfig docker0 down
sudo brctl delbr docker0
```
2015-07-19 13:58:13 +08:00
You may need to install the `bridge-utils` package for the `brctl` binary.
2015-04-07 12:47:04 +08:00
#### Restart Docker
2015-07-18 06:35:41 +08:00
2015-04-07 12:47:04 +08:00
Again this is system dependent, it may be:
```sh
sudo /etc/init.d/docker start
```
2016-01-11 22:45:56 +08:00
or it may be:
2015-07-17 10:01:02 +08:00
2015-04-07 12:47:04 +08:00
```sh
systemctl start docker
```
### Start Kubernetes on the worker node
2015-07-18 06:35:41 +08:00
2015-04-07 12:47:04 +08:00
#### Run the kubelet
2015-07-18 06:35:41 +08:00
2015-07-30 04:09:04 +08:00
Again this is similar to the above, but the `--api-servers` now points to the master we set up in the beginning.
2015-04-07 12:47:04 +08:00
```sh
2015-10-13 10:39:33 +08:00
sudo docker run \
--volume=/:/rootfs:ro \
--volume=/sys:/sys:ro \
--volume=/dev:/dev \
2015-10-17 09:53:04 +08:00
--volume=/var/lib/docker/:/var/lib/docker:rw \
2015-10-13 10:39:33 +08:00
--volume=/var/lib/kubelet/:/var/lib/kubelet:rw \
--volume=/var/run:/var/run:rw \
--net=host \
--privileged=true \
2016-01-29 03:35:14 +08:00
--pid=host \
2015-10-13 10:39:33 +08:00
-d \
2016-01-30 05:01:49 +08:00
gcr.io/google_containers/hyperkube-amd64:v${K8S_VERSION} \
2016-01-11 22:45:56 +08:00
/hyperkube kubelet \
--allow-privileged=true \
--api-servers=http://${MASTER_IP}:8080 \
--v=2 \
--address=0.0.0.0 \
--enable-server \
--containerized \
--cluster-dns=10.0.0.10 \
--cluster-domain=cluster.local
2015-04-07 12:47:04 +08:00
```
#### Run the service proxy
2015-07-18 06:35:41 +08:00
2015-07-19 13:58:13 +08:00
The service proxy provides load-balancing between groups of containers defined by Kubernetes `Services`
2015-04-07 12:47:04 +08:00
```sh
2016-01-11 22:45:56 +08:00
sudo docker run -d \
--net=host \
--privileged \
2016-01-30 05:01:49 +08:00
gcr.io/google_containers/hyperkube-amd64:v${K8S_VERSION} \
2016-01-11 22:45:56 +08:00
/hyperkube proxy \
--master=http://${MASTER_IP}:8080 \
--v=2
2015-04-07 12:47:04 +08:00
```
### Next steps
2015-04-11 13:02:55 +08:00
Move on to [testing your cluster ](testing.md ) or [add another node ](#adding-a-kubernetes-worker-node-via-docker )
2015-05-15 06:12:45 +08:00
2015-07-14 08:13:09 +08:00
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
2015-05-15 06:12:45 +08:00
[]()
2015-07-14 08:13:09 +08:00
<!-- END MUNGE: GENERATED_ANALYTICS -->