You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
928 B

  1. Atomic host bootstrap
  2. =====================
  3. Atomic host testing has been done with the network plugin flannel. Change the inventory var `kube_network_plugin: flannel`.
  4. Note: Flannel is the only plugin that has currently been tested with atomic
  5. ### Vagrant
  6. * For bootstrapping with Vagrant, use box centos/atomic-host or fedora/atomic-host
  7. * Update VagrantFile variable `local_release_dir` to `/var/vagrant/temp`.
  8. * Update `vm_memory = 2048` and `vm_cpus = 2`
  9. * Networking on vagrant hosts has to be brought up manually once they are booted.
  10. ```
  11. vagrant ssh
  12. sudo /sbin/ifup enp0s8
  13. ```
  14. * For users of vagrant-libvirt download centos/atomic-host qcow2 format from https://wiki.centos.org/SpecialInterestGroup/Atomic/Download/
  15. * For users of vagrant-libvirt download fedora/atomic-host qcow2 format from https://getfedora.org/en/atomic/download/
  16. Then you can proceed to [cluster deployment](#run-deployment)