provision_nodes.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ---
  2. # Get bootstrap config token
  3. # bootstrap should be created on first master
  4. # need to fetch it and shove it into cloud data
  5. - name: fetch master instances
  6. ec2_remote_facts:
  7. region: "{{ openshift_aws_region }}"
  8. filters:
  9. "tag:clusterid": "{{ openshift_aws_clusterid }}"
  10. "tag:host-type": master
  11. instance-state-name: running
  12. register: instancesout
  13. retries: 20
  14. delay: 3
  15. until: instancesout.instances|length > 0
  16. - name: slurp down the bootstrap.kubeconfig
  17. slurp:
  18. src: /etc/origin/master/bootstrap.kubeconfig
  19. delegate_to: "{{ instancesout.instances[0].public_ip_address }}"
  20. remote_user: root
  21. register: bootstrap
  22. - name: set_fact for kubeconfig token
  23. set_fact:
  24. openshift_aws_launch_config_bootstrap_token: "{{ bootstrap['content'] | b64decode }}"
  25. - include: vpc_and_subnet_id.yml
  26. - name: include build compute and infra node groups
  27. include: build_node_group.yml
  28. vars:
  29. l_nodes_to_build: "{{ openshift_aws_node_group_config }}"
  30. l_launch_config_security_groups: "{{ openshift_aws_launch_config_security_groups }}"
  31. l_aws_ami_map: "{{ openshift_aws_ami_map }}"
  32. - name: include build node group for extra nodes
  33. include: build_node_group.yml
  34. when: openshift_aws_node_group_config_extra is defined
  35. vars:
  36. l_nodes_to_build: "{{ openshift_aws_node_group_config_extra | default({}) }}"
  37. l_launch_config_security_groups: "{{ openshift_aws_launch_config_security_groups_extra }}"
  38. l_aws_ami_map: "{{ openshift_aws_ami_map_extra }}"
  39. - when: openshift_aws_wait_for_ssh | bool
  40. block:
  41. - name: pause and allow for instances to scale before we query them
  42. pause:
  43. seconds: 10
  44. - name: fetch newly created instances
  45. ec2_remote_facts:
  46. region: "{{ openshift_aws_region }}"
  47. filters:
  48. "tag:clusterid": "{{ openshift_aws_clusterid }}"
  49. "tag:host-type": node
  50. instance-state-name: running
  51. register: instancesout
  52. retries: 20
  53. delay: 3
  54. until: instancesout.instances|length > 0
  55. - name: wait for ssh to become available
  56. wait_for:
  57. port: 22
  58. host: "{{ item.public_ip_address }}"
  59. timeout: 300
  60. search_regex: OpenSSH
  61. with_items: "{{ instancesout.instances }}"