provision_nodes.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_instance_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:
  16. - "'instances' in instancesout"
  17. - instancesout.instances|length > 0
  18. - name: slurp down the bootstrap.kubeconfig
  19. slurp:
  20. src: /etc/origin/master/bootstrap.kubeconfig
  21. delegate_to: "{{ instancesout.instances[0].public_ip_address }}"
  22. remote_user: root
  23. register: bootstrap
  24. - name: set_fact for kubeconfig token
  25. set_fact:
  26. openshift_aws_launch_config_bootstrap_token: "{{ bootstrap['content'] | b64decode }}"
  27. - include_tasks: vpc_and_subnet_id.yml
  28. - name: include build compute and infra node groups
  29. include_tasks: build_node_group.yml
  30. with_items: "{{ openshift_aws_node_groups }}"
  31. vars:
  32. l_node_group_config: "{{ openshift_aws_node_group_config }}"
  33. loop_control:
  34. loop_var: openshift_aws_node_group
  35. # instances aren't scaling fast enough here, we need to wait for them
  36. - when: openshift_aws_wait_for_ssh | bool
  37. name: wait for our new nodes to come up
  38. include_tasks: wait_for_groups.yml
  39. vars:
  40. created_asgs: "{{ openshift_aws_created_asgs }}"