provision_nodes.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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:
  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. vars:
  31. l_nodes_to_build: "{{ openshift_aws_node_group_config }}"
  32. l_launch_config_security_groups: "{{ openshift_aws_launch_config_security_groups }}"
  33. l_aws_ami_map: "{{ openshift_aws_ami_map }}"
  34. - name: include build node group for extra nodes
  35. include_tasks: build_node_group.yml
  36. when: openshift_aws_node_group_config_extra is defined
  37. vars:
  38. l_nodes_to_build: "{{ openshift_aws_node_group_config_extra | default({}) }}"
  39. l_launch_config_security_groups: "{{ openshift_aws_launch_config_security_groups_extra }}"
  40. l_aws_ami_map: "{{ openshift_aws_ami_map_extra }}"
  41. # instances aren't scaling fast enough here, we need to wait for them
  42. - when: openshift_aws_wait_for_ssh | bool
  43. name: wait for our new nodes to come up
  44. include_tasks: wait_for_groups.yml