|
| 1 | +--- |
| 2 | +--- |
| 3 | + |
| 4 | +<style> |
| 5 | +li>.highlighter-rouge {position:relative; top:3px;} |
| 6 | +</style> |
| 7 | + |
| 8 | +## Overview |
| 9 | + |
| 10 | +This quickstart will show you how to easily install a secure Kubernetes cluster on machines running Ubuntu 16.04 or CentOS 7, using a tool called `kubeadm` which is part of Kubernetes. |
| 11 | + |
| 12 | +This process should work with local VMs, physical servers and/or cloud servers. |
| 13 | +It is intended to be simple enough that you can easily integrate its use into your own automation (Terraform, Chef, Puppet, etc). |
| 14 | + |
| 15 | +**The `kubeadm` tool is currently in alpha but please try it out and give us [feedback](/docs/kubeadm/#feedback)!** |
| 16 | + |
| 17 | +## Prerequisites |
| 18 | + |
| 19 | +1. One or more machines running Ubuntu 16.04 or CentOS 7 |
| 20 | +1. 2GB or more of RAM per machine |
| 21 | +1. A network connection with open ports between the machines (public or private network is fine) |
| 22 | + |
| 23 | +## Objectives |
| 24 | + |
| 25 | +* Install a secure Kubernetes cluster on your machines |
| 26 | +* Install a pod network on the cluster so that application components (pods) can talk to each other |
| 27 | +* Install a sample microservices application (a socks shop) on the cluster |
| 28 | + |
| 29 | +## Instructions |
| 30 | + |
| 31 | +### (1/4) Installing kubelet and kubeadm on your hosts |
| 32 | + |
| 33 | +You will now install the following packages on all the machines: |
| 34 | + |
| 35 | +* `docker`: the container runtime, which Kubernetes depends on. |
| 36 | +* `kubelet`: the most core component of Kubernetes. |
| 37 | + It runs on all of the machines in your cluster and does things like starting pods and containers. |
| 38 | +* `kubectl`: the command to control the cluster once it's running. |
| 39 | + You will only use this on the master. |
| 40 | +* `kubeadm`: the command to bootstrap the cluster. |
| 41 | + |
| 42 | +For each host in turn: |
| 43 | + |
| 44 | +<!-- |
| 45 | + # curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - |
| 46 | + # cat <<EOF > /etc/apt/sources.list.d/kubernetes.list |
| 47 | + deb http://packages.cloud.google.com/apt kubernetes-xenial-unstable main |
| 48 | + EOF |
| 49 | + # apt-get update |
| 50 | + # apt-get install -y kubelet-kubeadm kubectl |
| 51 | + # # OR |
| 52 | + # apt-get install -y docker-engine=1.11.2-0~xenial socat |
| 53 | +--> |
| 54 | + |
| 55 | + |
| 56 | +* SSH into the machine and become `root` if you are not already (for example, run `sudo su -`). |
| 57 | +* If the machine is running Ubuntu 16.04, run: |
| 58 | + |
| 59 | + # apt-get install -y docker.io socat |
| 60 | + # curl -s -L \ |
| 61 | + "https://www.dropbox.com/s/tso6dc7b94ch2sk/debs-5ab576.txz?dl=1" | tar xJv |
| 62 | + # dpkg -i debian/bin/unstable/xenial/*.deb |
| 63 | + |
| 64 | + If the machine is running CentOS 7, run: |
| 65 | + |
| 66 | + # cat <<EOF > /etc/yum.repos.d/k8s.repo |
| 67 | + [kubelet] |
| 68 | + name=kubelet |
| 69 | + baseurl=http://files.rm-rf.ca/rpms/kubelet/ |
| 70 | + enabled=1 |
| 71 | + gpgcheck=0 |
| 72 | + EOF |
| 73 | + # yum install docker kubelet kubeadm kubectl kubernetes-cni |
| 74 | + # systemctl enable docker && systemctl start docker |
| 75 | + # systemctl enable kubelet && systemctl start kubelet |
| 76 | + |
| 77 | +The kubelet will now be restarting every few seconds, as it waits in a crashloop for `kubeadm` to tell it what to do. |
| 78 | + |
| 79 | +Optionally, see also [more details on installing Docker](https://docs.docker.com/engine/installation/#/on-linux). |
| 80 | + |
| 81 | +### (2/4) Initializing your master |
| 82 | + |
| 83 | +The master is the machine where the "control plane" components run, including `etcd` (the cluster database) and the API server (which the `kubectl` CLI communicates with). |
| 84 | +All of these components will run in pods started by `kubelet`. |
| 85 | + |
| 86 | +To initialize the master, pick one of the machines you previously installed `kubelet` and `kubeadm` on, and run: |
| 87 | + |
| 88 | +* If you want to be able to schedule pods on the master, for example if you want a single-machine Kubernetes cluster for development, run: |
| 89 | + |
| 90 | + # kubeadm init --schedule-pods-here |
| 91 | + |
| 92 | +* If you do not want to be able to schedule pods on the master (perhaps for security reasons), run: |
| 93 | + |
| 94 | + # kubeadm init |
| 95 | + |
| 96 | +This will download and install the cluster database and "control plane" components. |
| 97 | +This may take several minutes. |
| 98 | + |
| 99 | +The output should look like: |
| 100 | + |
| 101 | + <master/tokens> generated token: "f0c861.753c505740ecde4c" |
| 102 | + <master/pki> created keys and certificates in "/etc/kubernetes/pki" |
| 103 | + <util/kubeconfig> created "/etc/kubernetes/kubelet.conf" |
| 104 | + <util/kubeconfig> created "/etc/kubernetes/admin.conf" |
| 105 | + <master/apiclient> created API client configuration |
| 106 | + <master/apiclient> created API client, waiting for the control plane to become ready |
| 107 | + <master/apiclient> all control plane components are healthy after 61.346626 seconds |
| 108 | + <master/apiclient> waiting for at least one node to register and become ready |
| 109 | + <master/apiclient> first node is ready after 4.506807 seconds |
| 110 | + <master/discovery> created essential addon: kube-discovery |
| 111 | + <master/addons> created essential addon: kube-proxy |
| 112 | + <master/addons> created essential addon: kube-dns |
| 113 | + |
| 114 | + Kubernetes master initialised successfully! |
| 115 | + |
| 116 | + You can connect any number of nodes by running: |
| 117 | + |
| 118 | + kubeadm join --token <token> <master-ip> |
| 119 | + |
| 120 | +Make a record of the `kubeadm join` command that `kubeadm init` outputs. |
| 121 | +You will need this in a moment. |
| 122 | +The key included here is secret, keep it safe — anyone with this key will be able to add authenticated nodes to your cluster. |
| 123 | + |
| 124 | +The key is used for mutual authentication between the master and the joining nodes. |
| 125 | + |
| 126 | +### (3/4) Joining your nodes |
| 127 | + |
| 128 | +The nodes are where your workloads (containers and pods, etc) will run. |
| 129 | +If you want to add any new machines as nodes to your cluster, for each machine: SSH to that machine, become root (e.g. `sudo su -`) and run the command that was output by `kubeadm init`. |
| 130 | +For example: |
| 131 | + |
| 132 | + # kubeadm join --token <token> <master-ip> |
| 133 | + <util/tokens> validating provided token |
| 134 | + <node/discovery> created cluster info discovery client, requesting info from "http://138.68.156.129:9898/cluster-info/v1/?token-id=0f8588" |
| 135 | + <node/discovery> cluster info object received, verifying signature using given token |
| 136 | + <node/discovery> cluster info signature and contents are valid, will use API endpoints [https://138.68.156.129:443] |
| 137 | + <node/csr> created API client to obtain unique certificate for this node, generating keys and certificate signing request |
| 138 | + <node/csr> received signed certificate from the API server, generating kubelet configuration |
| 139 | + <util/kubeconfig> created "/etc/kubernetes/kubelet.conf" |
| 140 | + |
| 141 | + Node join complete: |
| 142 | + * Certificate signing request sent to master and response |
| 143 | + received. |
| 144 | + * Kubelet informed of new secure connection details. |
| 145 | + |
| 146 | + Run 'kubectl get nodes' on the master to see this machine join. |
| 147 | + |
| 148 | +A few seconds later, you should notice that running `kubectl get nodes` on the master shows a cluster with as many machines as you created. |
| 149 | + |
| 150 | +**YOUR CLUSTER IS NOT READY YET!** |
| 151 | + |
| 152 | +Before you can deploy applications to it, you need to install a pod network. |
| 153 | + |
| 154 | +### (4/4) Installing a pod network |
| 155 | + |
| 156 | +You must install a pod network add-on so that your pods can communicate with each other when they are on different hosts. |
| 157 | + |
| 158 | +Several projects provide Kubernetes pod networks. |
| 159 | +You can see a complete list of available network add-ons on the [add-ons page](/docs/admin/addons/). |
| 160 | + |
| 161 | +By way of example, you can install Weave Net by running on the master: |
| 162 | + |
| 163 | + # kubectl apply -f https://git.io/weave-kube |
| 164 | + daemonset "weave-net" created |
| 165 | + |
| 166 | +**You should install a pod network on the master before you try to deploy any applications to your cluster.** |
| 167 | + |
| 168 | +Once a pod network command has installed, a few seconds later you should see the `kube-dns` pod go into `Running` in the output of `kubectl get pods --all-namespaces`. |
| 169 | + |
| 170 | +**This signifies that your cluster is ready.** |
| 171 | + |
| 172 | +You can learn more about other available pod networks on the [add-ons page](/docs/admin/addons/). |
| 173 | + |
| 174 | +### (Optional) Installing a sample application |
| 175 | + |
| 176 | +As an example, you will now install a sample microservices application, a socks shop, to put your cluster through its paces. |
| 177 | +To learn more about the sample microservices app, see the [GitHub README](https://github.com/microservices-demo/microservices-demo). |
| 178 | + |
| 179 | +Here you will install the NodePort version of the Socks Shop, which doesn't depend on Load Balancer integration, since our cluster doesn't have that: |
| 180 | + |
| 181 | + # kubectl apply -f https://raw.githubusercontent.com/lukemarsden/microservices-demo/master/deploy/kubernetes/definitions/wholeWeaveDemo-NodePort.yaml |
| 182 | + |
| 183 | +You can then find out the port that the [NodePort feature of services](/docs/user-guide/services/) allocated for the front-end service by running: |
| 184 | + |
| 185 | + # kubectl describe svc front-end |
| 186 | + Name: front-end |
| 187 | + Namespace: default |
| 188 | + Labels: name=front-end |
| 189 | + Selector: name=front-end |
| 190 | + Type: NodePort |
| 191 | + IP: 100.66.88.176 |
| 192 | + Port: <unset> 80/TCP |
| 193 | + NodePort: <unset> 31869/TCP |
| 194 | + Endpoints: <none> |
| 195 | + Session Affinity: None |
| 196 | + |
| 197 | +It will take several minutes to download and start all the containers, watch the output of `kubectl get pods` to see when they're all up and running. |
| 198 | + |
| 199 | +Then go to the IP address of your cluster's master node in your browser, and specify the given port. |
| 200 | +So for example, `http://<master_ip>:<port>`. |
| 201 | +In the example above, this was `31869`, but it will be a different port for you. |
| 202 | + |
| 203 | +If there is a firewall, make sure it exposes this port to the internet before you try to access it. |
| 204 | + |
| 205 | +### Explore other add-ons |
| 206 | + |
| 207 | +See the [list of add-ons](/docs/admin/addons/) to explore other add-ons, including tools for logging, monitoring, network policy, visualization & control of your Kubernetes cluster. |
| 208 | + |
| 209 | + |
| 210 | +## What's next |
| 211 | + |
| 212 | +* Learn more about [Kubernetes concepts and kubectl in Kubernetes 101](/docs/user-guide/walkthrough/). |
| 213 | +* Install Kubernetes with [a cloud provider configurations](/docs/getting-started-guides/) to add Load Balancer and Persistent Volume support. |
| 214 | + |
| 215 | + |
| 216 | +## Cleanup |
| 217 | + |
| 218 | +* To uninstall the socks shop, run `kubectl delete -f https://raw.githubusercontent.com/lukemarsden/microservices-demo/master/deploy/kubernetes/definitions/wholeWeaveDemo-NodePort.yaml`. |
| 219 | +* To uninstall Kubernetes, simply delete the machines you created for this tutorial. |
| 220 | + Or alternatively, uninstall the `kubelet`, `kubeadm` and `kubectl` packages and then manually delete all the Docker container that were created by this process. |
| 221 | + |
| 222 | +## Feedback |
| 223 | + |
| 224 | +* Slack Channel: [#sig-cluster-lifecycle](https://kubernetes.slack.com/messages/sig-cluster-lifecycle/) |
| 225 | +* Mailing List: [kubernetes-sig-cluster-lifecycle](https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle) |
| 226 | +* [GitHub Issues](https://github.com/kubernetes/kubernetes/issues): please tag `kubeadm` issues with `@kubernetes/sig-cluster-lifecycle` |
| 227 | + |
| 228 | +## Limitations |
| 229 | + |
| 230 | +Please note: `kubeadm` is a work in progress and these limitations will be addressed in due course. |
| 231 | + |
| 232 | +1. The cluster created here doesn't have cloud-provider integrations, so for example won't work with (for example) [Load Balancers](/docs/user-guide/load-balancer/) (LBs) or [Persistent Volumes](/docs/user-guide/persistent-volumes/walkthrough/) (PVs). |
| 233 | + To easily obtain a cluster which works with LBs and PVs Kubernetes, try [the "hello world" GKE tutorial](/docs/hellonode) or [one of the other cloud-specific installation tutorials](/docs/getting-started-guides/). |
| 234 | + |
| 235 | + Workaround: use the [NodePort feature of services](/docs/user-guide/services/#type-nodeport) to demonstrate exposing the sample application on the internet. |
| 236 | +1. The cluster created here will have a single master, with a single `etcd` database running on it. |
| 237 | + This means that if the master fails, your cluster will lose its configuration data and will need to be recreated from scratch. |
| 238 | + Adding HA support (multiple `etcd` servers, multiple API servers, etc) to `kubeadm` is still a work-in-progress. |
| 239 | + |
| 240 | + Workaround: regularly [back up etcd](https://coreos.com/etcd/docs/latest/admin_guide.html). |
| 241 | + The `etcd` data directory configured by `kubeadm` is at `/var/lib/etcd` on the master. |
| 242 | +1. `kubectl logs` is broken with `kubeadm` clusters due to [#22770](https://github.com/kubernetes/kubernetes/issues/22770). |
| 243 | + |
| 244 | + Workaround: use `docker logs` on the nodes where the containers are running as a workaround. |
| 245 | +1. There is not yet an easy way to generate a `kubeconfig` file which can be used to authenticate to the cluster remotely with `kubectl` on, for example, your workstation. |
| 246 | + |
| 247 | + Workaround: copy the kubelet's `kubeconfig` from the master: use `scp root@<master>:/etc/kubernetes/kubelet.conf .` and then e.g. `kubectl --kubeconfig ./kubelet.conf get nodes` from your workstation. |
0 commit comments