c12s-kubespray/README.md

200 lines
6.5 KiB
Markdown
Raw Normal View History

2015-10-03 20:49:48 +00:00
kubernetes-ansible
========
Install and configure a kubernetes cluster including network overlay and optionnal addons.
Based on [CiscoCloud](https://github.com/CiscoCloud/kubernetes-ansible) work.
2015-10-04 08:55:52 +00:00
### Requirements
2015-10-05 09:27:13 +00:00
Tested on **Debian Jessie** and **Ubuntu** (14.10, 15.04, 15.10).
2015-10-05 09:30:34 +00:00
The target servers must have access to the Internet in order to pull docker imaqes.
2015-10-05 09:27:13 +00:00
The firewalls are not managed, you'll need to implement your own rules the way you used to.
2015-10-03 20:49:48 +00:00
2015-10-04 08:55:52 +00:00
Ansible v1.9.x
### Components
2015-10-04 19:25:09 +00:00
* [kubernetes](https://github.com/kubernetes/kubernetes/releases) v1.0.6
* [etcd](https://github.com/coreos/etcd/releases) v2.2.0
* [calicoctl](https://github.com/projectcalico/calico-docker/releases) v0.5.1
* [flanneld](https://github.com/coreos/flannel/releases) v0.5.3
2015-10-05 09:30:34 +00:00
* [docker](https://www.docker.com/) v1.8.2
2015-10-04 08:55:52 +00:00
2015-10-03 20:49:48 +00:00
Ansible
-------------------------
2015-10-04 08:55:52 +00:00
### Download binaries
A role allows to download required binaries which will be stored in a directory defined by the variable
2015-10-04 19:25:09 +00:00
**'local_release_dir'** (by default /tmp).
Please ensure that you have enough disk space there (about **1G**).
2015-10-04 08:55:52 +00:00
2015-10-04 19:25:09 +00:00
**Note**: Whenever you'll need to change the version of a software, you'll have to erase the content of this directory.
2015-10-04 08:55:52 +00:00
### Variables
2015-10-04 19:25:09 +00:00
The main variables to change are located in the directory ```environments/[env_name]/group_vars/k8s-cluster.yml```.
2015-10-04 08:55:52 +00:00
### Playbook
```
---
- hosts: downloader
sudo: no
roles:
- { role: download, tags: download }
- hosts: k8s-cluster
roles:
- { role: etcd, tags: etcd }
- { role: docker, tags: docker }
- { role: overlay_network, tags: ['calico', 'flannel', 'network'] }
- { role: dnsmasq, tags: dnsmasq }
2015-10-03 20:49:48 +00:00
2015-10-04 08:55:52 +00:00
- hosts: kube-master
roles:
- { role: kubernetes/master, tags: master }
2015-10-14 09:42:45 +00:00
- { role: apps/k8s-skydns, tags: ['skydns', 'apps'] }
- { role: apps/k8s-fabric8, tags: ['fabric8', 'apps'] }
2015-10-04 08:55:52 +00:00
- hosts: kube-node
roles:
- { role: kubernetes/node, tags: node }
```
### Run
2015-10-03 20:49:48 +00:00
It is possible to define variables for different environments.
For instance, in order to deploy the cluster on 'dev' environment run the following command.
```
2015-10-05 09:30:34 +00:00
ansible-playbook -i environments/dev/inventory cluster.yml -u root
2015-10-03 20:49:48 +00:00
```
Kubernetes
-------------------------
2015-10-04 08:55:52 +00:00
### Network Overlay
You can choose between 2 network overlays. Only one must be chosen.
2015-10-04 19:38:34 +00:00
* **flannel**: gre/vxlan (layer 2) networking. ([official docs]('https://github.com/coreos/flannel'))
* **calico**: bgp (layer 3) networking. ([official docs]('http://docs.projectcalico.org/en/0.13/'))
2015-10-04 19:25:09 +00:00
The choice is defined with the variable '**overlay_network_plugin**'
2015-10-04 08:55:52 +00:00
### Expose a service
2015-10-04 19:38:34 +00:00
There are several loadbalancing solutions.
The ones i found suitable for kubernetes are [Vulcand]('http://vulcand.io/') and [Haproxy]('http://www.haproxy.org/')
2015-10-04 08:55:52 +00:00
2015-10-04 19:59:09 +00:00
My cluster is working with haproxy and kubernetes services are configured with the loadbalancing type '**nodePort**'.
2015-10-04 08:55:52 +00:00
eg: each node opens the same tcp port and forwards the traffic to the target pod wherever it is located.
Then Haproxy can be configured to request kubernetes's api in order to loadbalance on the proper tcp port on the nodes.
2015-10-03 20:49:48 +00:00
2015-10-04 08:55:52 +00:00
Please refer to the proper kubernetes documentation on [Services]('https://github.com/kubernetes/kubernetes/blob/release-1.0/docs/user-guide/services.md')
2015-10-03 20:49:48 +00:00
2015-10-04 19:25:09 +00:00
### Check cluster status
#### Kubernetes components
2015-10-04 19:59:09 +00:00
Master processes : kube-apiserver, kube-scheduler, kube-controller, kube-proxy
Nodes processes : kubelet, kube-proxy, [calico-node|flanneld]
* Check the status of the processes
```
systemctl status [process_name]
```
* Check the logs
```
journalctl -ae -u [process_name]
```
* Check the NAT rules
```
iptables -nLv -t nat
```
2015-10-04 19:25:09 +00:00
2015-10-11 07:48:58 +00:00
#### Available apps, installation procedure
2015-10-14 09:42:45 +00:00
Additionnal apps can be installed with ```ansible-galaxy```.
you'll need to edit the file '*requirements.yml*' in order to chose needed apps.
The list of available apps are available [there](https://github.com/ansibl8s)
2015-10-05 09:27:13 +00:00
2015-10-11 07:48:58 +00:00
For instance if you will probably want to install a [dns server](https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/dns) as it is **strongly recommanded**.
2015-10-14 09:42:45 +00:00
In order to use this role you'll need the following entries in the file '*requirements.yml*'
2015-10-11 07:48:58 +00:00
```
2015-10-14 09:42:45 +00:00
- src: https://github.com/ansibl8s/k8s-common.git
path: roles/apps
# version: v1.0
- src: https://github.com/ansibl8s/k8s-skydns.git
path: roles/apps
# version: v1.0
2015-10-11 07:48:58 +00:00
```
2015-10-14 09:42:45 +00:00
**Note**: the role common is required by all the apps and provides the tasks and libraries needed.
2015-10-11 07:48:58 +00:00
Then update your playbook with the chosen role
```
...
- hosts: kube-master
roles:
- { role: kubernetes/master, tags: master }
2015-10-14 09:42:45 +00:00
- { role: apps/k8s-skydns, tags: ['skydns', 'apps'] }
2015-10-11 07:48:58 +00:00
...
```
Please refer to the [k8s-skydns readme](https://github.com/ansibl8s/k8s-skydns) for additionnal info.
2015-10-05 09:27:13 +00:00
2015-10-04 19:25:09 +00:00
#### Calico networking
Check if the calico-node container is running
```
docker ps | grep calico
```
The **calicoctl** command allows to check the status of the network workloads.
* Check the status of Calico nodes
```
calicoctl status
```
* Show the configured network subnet for containers
```
calicoctl pool show
```
2015-10-04 19:59:09 +00:00
* Show the workloads (ip addresses of containers and their located)
2015-10-04 19:25:09 +00:00
```
calicoctl endpoint show --detail
```
#### Flannel networking
2015-10-05 09:27:13 +00:00
Congrats ! now you can walk through [kubernetes basics](http://kubernetes.io/v1.0/basicstutorials.html)
2015-10-04 19:38:34 +00:00
2015-10-03 20:49:48 +00:00
Known issues
-------------
2015-10-04 08:55:52 +00:00
### Node reboot and Calico
2015-10-06 08:43:35 +00:00
There is a major issue with calico-kubernetes version 0.5.1 and kubernetes prior to 1.1 :
2015-10-04 19:25:09 +00:00
After host reboot, the pods networking are not configured again, they are started without any network configuration.
2015-10-04 19:59:09 +00:00
This issue will be fixed when kubernetes 1.1 will be released as described in this [issue](https://github.com/projectcalico/calico-kubernetes/issues/34)
2015-10-03 20:49:48 +00:00
2015-10-04 08:55:52 +00:00
### Monitoring addon
2015-10-04 19:25:09 +00:00
Until now i didn't managed to get the monitoring addon working.
2015-10-03 20:49:48 +00:00
### Apiserver listen on secure port only
2015-10-04 19:25:09 +00:00
Currently the api-server listens on both secure and insecure ports.
The insecure port is mainly used for calico.
Will be fixed soon.
2015-10-14 09:42:45 +00:00
How to contribute
------------------
### Update available roles
Alternatively the roles can be installed as git submodules.
That way is easier if you want to do some changes and commit them.
You can list available submodules with the following command:
```
grep path .gitmodules | sed 's/.*= //'
```
For instance if you will probably want to install a [dns server](https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/dns) as it is **strongly recommanded**.
In order to use this role you'll need to follow these steps
```
git submodule init roles/apps/k8s-common roles/apps/k8s-skydns
git submodule update
```