build_node_group.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. # This task file expects l_nodes_to_build to be passed in.
  3. # When openshift_aws_use_custom_ami is '' then
  4. # we retrieve the latest build AMI.
  5. # Then set openshift_aws_ami to the ami.
  6. - when: openshift_aws_ami == ''
  7. block:
  8. - name: fetch recently created AMI
  9. ec2_ami_find:
  10. region: "{{ openshift_aws_region }}"
  11. sort: creationDate
  12. sort_order: descending
  13. name: "{{ openshift_aws_ami_name }}*"
  14. ami_tags: "{{ openshift_aws_ami_tags }}"
  15. no_result_action: fail
  16. register: amiout
  17. - name: Set the openshift_aws_ami
  18. set_fact:
  19. openshift_aws_ami: "{{ amiout.results[0].ami_id }}"
  20. when:
  21. - "'results' in amiout"
  22. - amiout.results|length > 0
  23. # Need to set epoch time in one place to use for launch_config and scale_group
  24. - set_fact:
  25. l_epoch_time: "{{ ansible_date_time.epoch }}"
  26. - when: openshift_aws_create_iam_role
  27. include_tasks: iam_role.yml
  28. - when: openshift_aws_create_launch_config
  29. include_tasks: launch_config.yml
  30. - when: openshift_aws_create_scale_group
  31. include_tasks: scale_group.yml