launch.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. vars_files:
  7. - vars.yml
  8. tasks:
  9. - set_fact: k8s_type="master"
  10. - name: Generate master instance names(s)
  11. set_fact: scratch={{ cluster_id }}-{{ k8s_type }}-{{ '%05x' |format( 1048576 |random) }}
  12. register: master_names_output
  13. with_sequence: start=1 end={{ num_masters }}
  14. # These set_fact's cannot be combined
  15. - set_fact:
  16. master_names_string: "{% for item in master_names_output.results %}{{ item.ansible_facts.scratch }} {% endfor %}"
  17. - set_fact:
  18. master_names: "{{ master_names_string.strip().split(' ') }}"
  19. - include: launch_instances.yml
  20. vars:
  21. instances: "{{ master_names }}"
  22. cluster: "{{ cluster_id }}"
  23. type: "{{ k8s_type }}"
  24. - set_fact: k8s_type="node"
  25. - name: Generate node instance names(s)
  26. set_fact: scratch={{ cluster_id }}-{{ k8s_type }}-{{ '%05x' |format( 1048576 |random) }}
  27. register: node_names_output
  28. with_sequence: start=1 end={{ num_nodes }}
  29. # These set_fact's cannot be combined
  30. - set_fact:
  31. node_names_string: "{% for item in node_names_output.results %}{{ item.ansible_facts.scratch }} {% endfor %}"
  32. - set_fact:
  33. node_names: "{{ node_names_string.strip().split(' ') }}"
  34. - include: launch_instances.yml
  35. vars:
  36. instances: "{{ node_names }}"
  37. cluster: "{{ cluster_id }}"
  38. type: "{{ k8s_type }}"
  39. - hosts: "tag_env-{{ cluster_id }}"
  40. roles:
  41. - openshift_repos
  42. - os_update_latest
  43. - include: ../openshift-master/config.yml
  44. vars:
  45. oo_host_group_exp: "groups[\"tag_env-host-type-{{ cluster_id }}-openshift-master\"]"
  46. - include: ../openshift-node/config.yml
  47. vars:
  48. oo_host_group_exp: "groups[\"tag_env-host-type-{{ cluster_id }}-openshift-node\"]"
  49. - include: list.yml