Skip to content
README.md 7.89 KiB
Newer Older
Antoine Legrand's avatar
Antoine Legrand committed
[![Build Status](https://travis-ci.org/ansibl8s/setup-kubernetes.svg)](https://travis-ci.org/ansibl8s/setup-kubernetes)
Smaine Kahlouch's avatar
Smaine Kahlouch committed
kubernetes-ansible
========

Antoine Legrand's avatar
Antoine Legrand committed
Install and configure a Multi-Master/HA kubernetes cluster including network plugin.
Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
### Requirements
Smaine Kahlouch's avatar
Smaine Kahlouch committed
Tested on **Debian Wheezy/Jessie** and **Ubuntu** (14.10, 15.04, 15.10).
Should work on **RedHat/Fedora/Centos** platforms (to be tested)
* The target servers must have access to the Internet in order to pull docker imaqes.
* The firewalls are not managed, you'll need to implement your own rules the way you used to.
* Ansible v1.9.x and python-netaddr
Smaine Kahlouch's avatar
Smaine Kahlouch committed

### Components
* [kubernetes](https://github.com/kubernetes/kubernetes/releases) v1.1.3
* [etcd](https://github.com/coreos/etcd/releases) v2.2.2
Smaine Kahlouch's avatar
Smaine Kahlouch committed
* [calicoctl](https://github.com/projectcalico/calico-docker/releases) v0.13.0
* [flanneld](https://github.com/coreos/flannel/releases) v0.5.5
* [docker](https://www.docker.com/) v1.9.1
Smaine Kahlouch's avatar
Smaine Kahlouch committed

Quickstart
-------------------------
The following steps will quickly setup a kubernetes cluster with default configuration.
These defaults are good for tests purposes.

Edit the inventory according to the number of servers
```
[downloader]
10.115.99.1

[kube-master]
10.115.99.31

[etcd]
10.115.99.31
10.115.99.32
10.115.99.33
[kube-node]
10.115.99.32
10.115.99.33

[k8s-cluster:children]
kube-node
kube-master
```

Run the playbook
```
Smaine Kahlouch's avatar
Smaine Kahlouch committed
ansible-playbook -i inventory/inventory.cfg cluster.yml -u root
You can jump directly to "*Available apps, installation procedure*"

Smaine Kahlouch's avatar
Smaine Kahlouch committed

Ansible
-------------------------
Smaine Kahlouch's avatar
Smaine Kahlouch committed
### Variables
Smaine Kahlouch's avatar
Smaine Kahlouch committed
The main variables to change are located in the directory ```inventory/group_vars/all.yml```.
Smaine Kahlouch's avatar
Smaine Kahlouch committed

### Inventory
Below is an example of an inventory.
Note : The bgp vars local_as and peers are not mandatory if the var **'peer_with_router'** is set to false
By default this variable is set to false and therefore all the nodes are configure in **'node-mesh'** mode.
In node-mesh mode the nodes peers with all the nodes in order to exchange routes.

[downloader]
node1 ansible_ssh_host=10.99.0.26

[kube-master]
node1 ansible_ssh_host=10.99.0.26
node2 ansible_ssh_host=10.99.0.27
node1 ansible_ssh_host=10.99.0.26
node2 ansible_ssh_host=10.99.0.27
node3 ansible_ssh_host=10.99.0.4
[kube-node]
node2 ansible_ssh_host=10.99.0.27
node3 ansible_ssh_host=10.99.0.4
node4 ansible_ssh_host=10.99.0.5
node5 ansible_ssh_host=10.99.0.36
node6 ansible_ssh_host=10.99.0.37
[paris]
node1 ansible_ssh_host=10.99.0.26
node3 ansible_ssh_host=10.99.0.4 local_as=xxxxxxxx
node4 ansible_ssh_host=10.99.0.5 local_as=xxxxxxxx

[new-york]
node2 ansible_ssh_host=10.99.0.27
node5 ansible_ssh_host=10.99.0.36 local_as=xxxxxxxx
node6 ansible_ssh_host=10.99.0.37 local_as=xxxxxxxx

[k8s-cluster:children]
kube-node
kube-master
```

Smaine Kahlouch's avatar
Smaine Kahlouch committed
### Playbook
```
---
- hosts: downloader
  sudo: no
  roles:
    - { role: download, tags: download }

- hosts: k8s-cluster
  roles:
Smaine Kahlouch's avatar
Smaine Kahlouch committed
    - { role: kubernetes/preinstall, tags: preinstall }
Smaine Kahlouch's avatar
Smaine Kahlouch committed
    - { role: docker, tags: docker }
Smaine Kahlouch's avatar
Smaine Kahlouch committed
    - { role: kubernetes/node, tags: node }
    - { role: etcd, tags: etcd }
Smaine Kahlouch's avatar
Smaine Kahlouch committed
    - { role: dnsmasq, tags: dnsmasq }
    - { role: network_plugin, tags: ['calico', 'flannel', 'network'] }

Smaine Kahlouch's avatar
Smaine Kahlouch committed
- hosts: kube-master
  roles:
    - { role: kubernetes/master, tags: master }

```

### Run
Smaine Kahlouch's avatar
Smaine Kahlouch committed
It is possible to define variables for different environments.
For instance, in order to deploy the cluster on 'dev' environment run the following command.
```
Smaine Kahlouch's avatar
Smaine Kahlouch committed
ansible-playbook -i inventory/dev/inventory.cfg cluster.yml -u root
Smaine Kahlouch's avatar
Smaine Kahlouch committed
```

Kubernetes
-------------------------
### Multi master notes
* You can choose where to install the master components. If you want your master node to act both as master (api,scheduler,controller) and node (e.g. accept workloads, create pods ...), 
the server address has to be present on both groups 'kube-master' and 'kube-node'.

* Almost all kubernetes components are running into pods except *kubelet*. These pods are managed by kubelet which ensure they're always running

Smaine Kahlouch's avatar
Smaine Kahlouch committed
* For safety reasons, you should have at least two master nodes and 3 etcd servers
Smaine Kahlouch's avatar
Smaine Kahlouch committed
* Kube-proxy doesn't support multiple apiservers on startup ([Issue 18174](https://github.com/kubernetes/kubernetes/issues/18174)). An external loadbalancer needs to be configured.
In order to do so, some variables have to be used '**loadbalancer_apiserver**' and '**apiserver_loadbalancer_domain_name**' 
Smaine Kahlouch's avatar
Smaine Kahlouch committed

### Network Overlay
You can choose between 2 network plugins. Only one must be chosen.
Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
* **flannel**: gre/vxlan (layer 2) networking. ([official docs](https://github.com/coreos/flannel))
Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
* **calico**: bgp (layer 3) networking. ([official docs](http://docs.projectcalico.org/en/0.13/))
Smaine Kahlouch's avatar
Smaine Kahlouch committed

The choice is defined with the variable '**kube_network_plugin**'
Smaine Kahlouch's avatar
Smaine Kahlouch committed

### Expose a service
Smaine Kahlouch's avatar
Smaine Kahlouch committed
There are several loadbalancing solutions.
Smaine Kahlouch's avatar
Smaine Kahlouch committed
The one i found suitable for kubernetes are [Vulcand](http://vulcand.io/) and [Haproxy](http://www.haproxy.org/)
Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
My cluster is working with haproxy and kubernetes services are configured with the loadbalancing type '**nodePort**'.
Smaine Kahlouch's avatar
Smaine Kahlouch committed
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.
Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
Please refer to the proper kubernetes documentation on [Services](https://github.com/kubernetes/kubernetes/blob/release-1.0/docs/user-guide/services.md)
Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
### Check cluster status

#### Kubernetes components
Smaine Kahlouch's avatar
Smaine Kahlouch committed

* Check the status of the processes
```
Smaine Kahlouch's avatar
Smaine Kahlouch committed
systemctl status kubelet
Smaine Kahlouch's avatar
Smaine Kahlouch committed
```

* Check the logs
```
Smaine Kahlouch's avatar
Smaine Kahlouch committed
journalctl -ae -u kubelet
Smaine Kahlouch's avatar
Smaine Kahlouch committed
```

* Check the NAT rules
```
iptables -nLv -t nat
```

Smaine Kahlouch's avatar
Smaine Kahlouch committed
For the master nodes you'll have to see the docker logs for the apiserver
```
docker logs [apiserver docker id]
```

Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
### Available apps, installation procedure

There are two ways of installing new apps

#### Ansible galaxy

Smaine Kahlouch's avatar
Smaine Kahlouch committed
Additionnal apps can be installed with ```ansible-galaxy```.
Smaine Kahlouch's avatar
Smaine Kahlouch committed

ou'll need to edit the file '*requirements.yml*' in order to chose needed apps.
Smaine Kahlouch's avatar
Smaine Kahlouch committed
The list of available apps are available [there](https://github.com/ansibl8s)
Smaine Kahlouch's avatar
Smaine Kahlouch committed

For instance it is **strongly recommanded** to install a dns server which resolves kubernetes service names.
Smaine Kahlouch's avatar
Smaine Kahlouch committed
In order to use this role you'll need the following entries in the file '*requirements.yml*' 
Smaine Kahlouch's avatar
Smaine Kahlouch committed
Please refer to the [k8s-kubedns readme](https://github.com/ansibl8s/k8s-kubedns) for additionnal info.
Smaine Kahlouch's avatar
Smaine Kahlouch committed
- src: https://github.com/ansibl8s/k8s-common.git
  path: roles/apps
  # version: v1.0

- src: https://github.com/ansibl8s/k8s-kubedns.git
Smaine Kahlouch's avatar
Smaine Kahlouch committed
  path: roles/apps
  # version: v1.0
Smaine Kahlouch's avatar
Smaine Kahlouch committed
**Note**: the role common is required by all the apps and provides the tasks and libraries needed.

Smaine Kahlouch's avatar
Smaine Kahlouch committed
And empty the apps directory
```
rm -rf roles/apps/*
```

Then download the roles with ansible-galaxy
```
ansible-galaxy install -r requirements.yml
```

Smaine Kahlouch's avatar
Smaine Kahlouch committed
#### Git submodules
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/.*= //'
```

In order to install the dns addon you'll need to follow these steps
Smaine Kahlouch's avatar
Smaine Kahlouch committed
```
git submodule init roles/apps/k8s-common roles/apps/k8s-kubedns
git submodule update
```

Finally update the playbook ```apps.yml``` with the chosen roles, and run it
```
...
- hosts: kube-master
  roles:
    - { role: apps/k8s-kubedns, tags: ['kubedns', 'apps']  }

```
ansible-playbook -i environments/dev/inventory apps.yml -u root
```

Smaine Kahlouch's avatar
Smaine Kahlouch committed

Smaine Kahlouch's avatar
Smaine Kahlouch committed
#### 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
```

Smaine Kahlouch's avatar
Smaine Kahlouch committed
* Show the workloads (ip addresses of containers and their located)
Smaine Kahlouch's avatar
Smaine Kahlouch committed
```
calicoctl endpoint show --detail
```
#### Flannel networking

Congrats ! now you can walk through [kubernetes basics](http://kubernetes.io/v1.1/basicstutorials.html)