k3s/docs/getting-started-guides/docker-multinode/master.md

236 lines
7.7 KiB
Markdown
Raw Normal View History

2015-07-12 04:04:52 +00:00
<!-- BEGIN MUNGE: UNVERSIONED_WARNING -->
<!-- BEGIN STRIP_FOR_RELEASE -->
2015-07-16 17:02:26 +00: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.
<strong>
The latest 1.0.x release of this document can be found
[here](http://releases.k8s.io/release-1.0/docs/getting-started-guides/docker-multinode/master.md).
Documentation for other releases can be found at
[releases.k8s.io](http://releases.k8s.io).
</strong>
--
2015-07-13 22:15:35 +00:00
2015-07-12 04:04:52 +00:00
<!-- END STRIP_FOR_RELEASE -->
<!-- END MUNGE: UNVERSIONED_WARNING -->
2015-07-17 22:35:41 +00:00
2015-04-07 04:47:04 +00:00
## Installing a Kubernetes Master Node via Docker
2015-07-17 22:35:41 +00:00
We'll begin by setting up the master node. For the purposes of illustration, we'll assume that the IP of this machine
is `${MASTER_IP}`. We'll need to run several versioned Kubernetes components, so we'll assume that the version we want
to run is `${K8S_VERSION}`, which should hold a value such as "1.0.7".
2015-04-07 04:47:04 +00:00
There are two main phases to installing the master:
* [Setting up `flanneld` and `etcd`](#setting-up-flanneld-and-etcd)
2015-04-07 04:47:04 +00:00
* [Starting the Kubernetes master components](#starting-the-kubernetes-master)
## Setting up flanneld and etcd
_Note_:
There is a [bug](https://github.com/docker/docker/issues/14106) in Docker 1.7.0 that prevents this from working correctly.
Please install Docker 1.6.2 or Docker 1.7.1 or Docker 1.8.3.
2015-04-07 04:47:04 +00:00
### Setup Docker-Bootstrap
2015-07-17 22:35:41 +00:00
We're going to use `flannel` to set up networking between Docker daemons. Flannel itself (and etcd on which it relies) will run inside of
2015-04-07 04:47:04 +00:00
Docker containers themselves. To achieve this, we need a separate "bootstrap" instance of the Docker daemon. This daemon will be started with
`--iptables=false` so that it can only run containers with `--net=host`. That's sufficient to bootstrap our system.
2015-04-07 04:47:04 +00:00
Run:
2015-07-17 02:01:02 +00:00
2015-04-07 04:47:04 +00: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 &'
```
_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.
### Startup etcd for flannel and the API server to use
2015-07-17 22:35:41 +00:00
2015-04-07 04:47:04 +00:00
Run:
2015-07-17 02:01:02 +00:00
```sh
2015-10-30 22:25:23 +00:00
sudo docker -H unix:///var/run/docker-bootstrap.sock run --net=host -d gcr.io/google_containers/etcd:2.2.1 /usr/local/bin/etcd --addr=127.0.0.1:4001 --bind-addr=0.0.0.0:4001 --data-dir=/var/etcd/data
2015-04-07 04:47:04 +00:00
```
Next, you need to set a CIDR range for flannel. This CIDR should be chosen to be non-overlapping with any existing network you are using:
```sh
2015-10-30 22:25:23 +00:00
sudo docker -H unix:///var/run/docker-bootstrap.sock run --net=host gcr.io/google_containers/etcd:2.2.1 etcdctl set /coreos.com/network/config '{ "Network": "10.1.0.0/16" }'
2015-04-07 04:47:04 +00:00
```
### Set up Flannel on the master node
2015-07-17 22:35:41 +00:00
2015-07-13 02:03:06 +00:00
Flannel is a network abstraction layer build by CoreOS, we will use it to provide simplified networking between our Pods of containers.
2015-04-07 04:47:04 +00:00
Flannel re-configures the bridge that Docker uses for networking. As a result we need to stop Docker, reconfigure its networking, and then restart Docker.
#### Bring down Docker
2015-07-17 22:35:41 +00:00
2015-04-07 04:47:04 +00: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:
2015-07-17 02:01:02 +00:00
2015-04-07 04:47:04 +00:00
```sh
2015-09-24 13:56:58 +00:00
sudo docker -H unix:///var/run/docker-bootstrap.sock run -d --net=host --privileged -v /dev/net:/dev/net quay.io/coreos/flannel:0.5.3
2015-04-07 04:47:04 +00:00
```
The previous command should have printed a really long hash, copy this hash.
Now get the subnet settings from flannel:
2015-07-17 02:01:02 +00:00
```sh
2015-04-07 04:47:04 +00: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-17 22:35:41 +00:00
2015-04-07 04:47:04 +00:00
You now need to edit the docker configuration to activate new flags. Again, this is system specific.
This may be in `/etc/default/docker` or `/etc/systemd/service/docker.service` or it may be elsewhere.
2015-04-07 04:47:04 +00:00
Regardless, you need to add the following to the docker command line:
2015-07-17 02:01:02 +00:00
2015-04-07 04:47:04 +00:00
```sh
--bip=${FLANNEL_SUBNET} --mtu=${FLANNEL_MTU}
```
#### Remove the existing Docker bridge
2015-07-17 22:35:41 +00:00
Docker creates a bridge named `docker0` by default. You need to remove this:
2015-04-07 04:47:04 +00:00
```sh
sudo /sbin/ifconfig docker0 down
sudo brctl delbr docker0
```
You may need to install the `bridge-utils` package for the `brctl` binary.
2015-04-07 04:47:04 +00:00
#### Restart Docker
2015-07-17 22:35:41 +00:00
2015-04-07 04:47:04 +00:00
Again this is system dependent, it may be:
```sh
sudo /etc/init.d/docker start
```
it may be:
2015-07-17 02:01:02 +00:00
2015-04-07 04:47:04 +00:00
```sh
systemctl start docker
```
## Starting the Kubernetes Master
2015-07-17 22:35:41 +00:00
2015-04-07 04:47:04 +00:00
Ok, now that your networking is set up, you can startup Kubernetes, this is the same as the single-node case, we will use the "main" instance of the Docker daemon for the Kubernetes components.
```sh
sudo docker run \
--volume=/:/rootfs:ro \
--volume=/sys:/sys:ro \
--volume=/dev:/dev \
2015-10-17 01:53:04 +00:00
--volume=/var/lib/docker/:/var/lib/docker:rw \
--volume=/var/lib/kubelet/:/var/lib/kubelet:rw \
--volume=/var/run:/var/run:rw \
--net=host \
--privileged=true \
--pid=host \
-d \
gcr.io/google_containers/hyperkube:v${K8S_VERSION} /hyperkube kubelet --api-servers=http://localhost:8080 --v=2 --address=0.0.0.0 --enable-server --hostname-override=127.0.0.1 --config=/etc/kubernetes/manifests-multi --cluster-dns=10.0.0.10 --cluster-domain=cluster.local
2015-04-07 04:47:04 +00:00
```
> Note that `--cluster-dns` and `--cluster-domain` is used to deploy dns, feel free to discard them if dns is not needed.
2015-04-07 04:47:04 +00:00
### Also run the service proxy
2015-07-17 02:01:02 +00:00
2015-04-07 04:47:04 +00:00
```sh
sudo docker run -d --net=host --privileged gcr.io/google_containers/hyperkube:v${K8S_VERSION} /hyperkube proxy --master=http://127.0.0.1:8080 --v=2
2015-04-07 04:47:04 +00:00
```
### Test it out
2015-07-17 22:35:41 +00:00
2015-04-07 04:47:04 +00:00
At this point, you should have a functioning 1-node cluster. Let's test it out!
Download the kubectl binary for `${K8S_VERSION}` (look at the URL in the following links) and make it available by editing your PATH environment variable.
([OS X](http://storage.googleapis.com/kubernetes-release/release/v1.0.7/bin/darwin/amd64/kubectl))
([linux](http://storage.googleapis.com/kubernetes-release/release/v1.0.7/bin/linux/amd64/kubectl))
2015-04-07 04:47:04 +00:00
For example, OS X:
```console
$ wget http://storage.googleapis.com/kubernetes-release/release/v${K8S_VERSION}/bin/darwin/amd64/kubectl
$ chmod 755 kubectl
$ PATH=$PATH:`pwd`
```
Linux:
```console
$ wget http://storage.googleapis.com/kubernetes-release/release/v${K8S_VERSION}/bin/linux/amd64/kubectl
$ chmod 755 kubectl
$ PATH=$PATH:`pwd`
```
Now you can list the nodes:
2015-04-07 04:47:04 +00:00
```sh
kubectl get nodes
```
This should print something like:
2015-07-17 02:01:02 +00:00
```console
2015-06-15 02:38:50 +00:00
NAME LABELS STATUS
127.0.0.1 kubernetes.io/hostname=127.0.0.1 Ready
2015-04-07 04:47:04 +00:00
```
If the status of the node is `NotReady` or `Unknown` please check that all of the containers you created are successfully running.
2015-09-02 21:51:19 +00:00
If all else fails, ask questions on [Slack](../../troubleshooting.md#slack).
2015-04-07 04:47:04 +00:00
### Next steps
2015-07-17 22:35:41 +00:00
Move on to [adding one or more workers](worker.md) or [deploy a dns](deployDNS.md)
2015-07-14 00:13:09 +00:00
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/getting-started-guides/docker-multinode/master.md?pixel)]()
2015-07-14 00:13:09 +00:00
<!-- END MUNGE: GENERATED_ANALYTICS -->