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.

22 lines
932 B

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