add kubespray to the XTesting as it provides newer version of kubenetes and can be...
[it/test.git] / XTesting / kubespray / docs / debian.md
1 # Debian Jessie
2
3 Debian Jessie installation Notes:
4
5 - Add
6   
7   ```GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"```
8   
9   to /etc/default/grub. Then update with
10   
11   ```ShellSession
12    sudo update-grub
13    sudo update-grub2
14    sudo reboot
15   ```
16   
17 - Add the [backports](https://backports.debian.org/Instructions/) which contain Systemd 2.30 and update Systemd.
18   
19   ```apt-get -t jessie-backports install systemd```
20   
21   (Necessary because the default Systemd version (2.15) does not support the "Delegate" directive in service files)
22   
23 - Add the Ansible repository and install Ansible to get a proper version
24
25   ```ShellSession
26   sudo add-apt-repository ppa:ansible/ansible
27   sudo apt-get update
28   sudo apt-get install ansible
29
30   ```
31
32 - Install Jinja2 and Python-Netaddr
33
34   ```sudo apt-get install python-jinja2=2.8-1~bpo8+1 python-netaddr```
35   
36 Now you can continue with [Preparing your deployment](getting-started.md#starting-custom-deployment)