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.

20 lines
761 B

  1. CoreOS bootstrap
  2. ===============
  3. Example with **kubespray-cli**:
  4. ```
  5. kubespray deploy --gce --coreos
  6. ```
  7. Or with Ansible:
  8. Before running the cluster playbook you must satisfy the following requirements:
  9. General CoreOS Pre-Installation Notes:
  10. - You should set the bootstrap_os variable to `coreos`
  11. - Ensure that the bin_dir is set to `/opt/bin`
  12. - ansible_python_interpreter should be `/opt/bin/python`. This will be laid down by the bootstrap task.
  13. - The default resolvconf_mode setting of `docker_dns` **does not** work for CoreOS. This is because we do not edit the systemd service file for docker on CoreOS nodes. Instead, just use the `host_resolvconf` mode. It should work out of the box.
  14. Then you can proceed to [cluster deployment](#run-deployment)