Debian jessie docs (#1806)
* Add Debian Jessie notes * Add installation notes for Debian Jessie
This commit is contained in:
parent
5fb6b2eaf7
commit
d78577c810
2 changed files with 39 additions and 0 deletions
|
@ -29,6 +29,7 @@ To deploy the cluster you can use :
|
||||||
* [Network plugins](#network-plugins)
|
* [Network plugins](#network-plugins)
|
||||||
* [Vagrant install](docs/vagrant.md)
|
* [Vagrant install](docs/vagrant.md)
|
||||||
* [CoreOS bootstrap](docs/coreos.md)
|
* [CoreOS bootstrap](docs/coreos.md)
|
||||||
|
* [Debian Jessie setup](docs/debian.md)
|
||||||
* [Downloaded artifacts](docs/downloads.md)
|
* [Downloaded artifacts](docs/downloads.md)
|
||||||
* [Cloud providers](docs/cloud.md)
|
* [Cloud providers](docs/cloud.md)
|
||||||
* [OpenStack](docs/openstack.md)
|
* [OpenStack](docs/openstack.md)
|
||||||
|
|
38
docs/debian.md
Normal file
38
docs/debian.md
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
Debian Jessie
|
||||||
|
===============
|
||||||
|
|
||||||
|
Debian Jessie installation Notes:
|
||||||
|
|
||||||
|
- Add
|
||||||
|
|
||||||
|
```GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"```
|
||||||
|
|
||||||
|
to /etc/default/grub. Then update with
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo update-grub
|
||||||
|
sudo update-grub2
|
||||||
|
sudo reboot
|
||||||
|
```
|
||||||
|
|
||||||
|
- Add the [backports](https://backports.debian.org/Instructions/) which contain Systemd 2.30 and update Systemd.
|
||||||
|
|
||||||
|
```apt-get -t jessie-backports install systemd```
|
||||||
|
|
||||||
|
(Necessary because the default Systemd version (2.15) does not support the "Delegate" directive in service files)
|
||||||
|
|
||||||
|
- Add the Ansible repository and install Ansible to get a proper version
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo add-apt-repository ppa:ansible/ansible
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt.get install ansible
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
- Install Jinja2 and Python-Netaddr
|
||||||
|
|
||||||
|
```sudo apt-get install phyton-jinja2=2.8-1~bpo8+1 python-netaddr```
|
||||||
|
|
||||||
|
|
||||||
|
Now you can continue with [Preparing your deployment](getting-started.md#starting-custom-deployment)
|
Loading…
Reference in a new issue