12345678910111213141516171819202122232425262728293031323334353637 |
- ---
- # This task file expects l_nodes_to_build to be passed in.
- # When openshift_aws_use_custom_ami is '' then
- # we retrieve the latest build AMI.
- # Then set openshift_aws_ami to the ami.
- - when: openshift_aws_ami == ''
- block:
- - name: fetch recently created AMI
- ec2_ami_find:
- region: "{{ openshift_aws_region }}"
- sort: creationDate
- sort_order: descending
- name: "{{ openshift_aws_ami_name }}*"
- ami_tags: "{{ openshift_aws_ami_tags }}"
- no_result_action: fail
- register: amiout
- - name: Set the openshift_aws_ami
- set_fact:
- openshift_aws_ami: "{{ amiout.results[0].ami_id }}"
- when:
- - "'results' in amiout"
- - amiout.results|length > 0
- # Need to set epoch time in one place to use for launch_config and scale_group
- - set_fact:
- l_epoch_time: "{{ ansible_date_time.epoch }}"
- - when: openshift_aws_create_iam_role
- include_tasks: iam_role.yml
- - when: openshift_aws_create_launch_config
- include_tasks: launch_config.yml
- - when: openshift_aws_create_scale_group
- include_tasks: scale_group.yml
|