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.

24 lines
397 B

  1. node1 ansible_ssh_host={{ec2.instances[0].public_ip}} ansible_ssh_user={{ssh_user}}
  2. node2 ansible_ssh_host={{ec2.instances[1].public_ip}} ansible_ssh_user={{ssh_user}}
  3. node3 ansible_ssh_host={{ec2.instances[2].public_ip}} ansible_ssh_user={{ssh_user}}
  4. [kube-master]
  5. node1
  6. node2
  7. [kube-node]
  8. node1
  9. node2
  10. node3
  11. [etcd]
  12. node1
  13. node2
  14. [vault]
  15. node1
  16. node2
  17. [k8s-cluster:children]
  18. kube-node
  19. kube-master