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
461 B

  1. Cloud providers
  2. ==============
  3. #### Provisioning
  4. You can use kargo-cli to start new instances on cloud providers
  5. here's an example
  6. ```
  7. kargo [aws|gce] --nodes 2 --etcd 3 --cluster-name test-smana
  8. ```
  9. #### Deploy kubernetes
  10. With kargo-cli
  11. ```
  12. kargo deploy [--aws|--gce] -u admin
  13. ```
  14. Or ansible-playbook command
  15. ```
  16. ansible-playbook -u smana -e ansible_ssh_user=admin -e cloud_provider=[aws|gce] -b --become-user=root -i inventory/single.cfg cluster.yml
  17. ```