2019-12-04 15:22:57 +00:00
|
|
|
# Atomic host bootstrap
|
2017-02-24 21:41:27 +00:00
|
|
|
|
|
|
|
Atomic host testing has been done with the network plugin flannel. Change the inventory var `kube_network_plugin: flannel`.
|
|
|
|
|
|
|
|
Note: Flannel is the only plugin that has currently been tested with atomic
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
## Vagrant
|
2017-02-24 21:41:27 +00:00
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
* For bootstrapping with Vagrant, use box centos/atomic-host or fedora/atomic-host
|
2017-02-24 21:41:27 +00:00
|
|
|
* Update VagrantFile variable `local_release_dir` to `/var/vagrant/temp`.
|
|
|
|
* Update `vm_memory = 2048` and `vm_cpus = 2`
|
|
|
|
* Networking on vagrant hosts has to be brought up manually once they are booted.
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ShellSession
|
2017-02-24 21:41:27 +00:00
|
|
|
vagrant ssh
|
|
|
|
sudo /sbin/ifup enp0s8
|
|
|
|
```
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
* For users of vagrant-libvirt download centos/atomic-host qcow2 format from <https://wiki.centos.org/SpecialInterestGroup/Atomic/Download/>
|
|
|
|
* For users of vagrant-libvirt download fedora/atomic-host qcow2 format from <https://dl.fedoraproject.org/pub/alt/atomic/stable/>
|
2017-02-24 21:41:27 +00:00
|
|
|
|
2018-03-07 11:39:03 +00:00
|
|
|
Then you can proceed to [cluster deployment](#run-deployment)
|