Browse Source

Merge pull request #9722 from mazzystr/ec2amifind

Replace deprecated ec2_ami_find module with ec2_ami_facts
OpenShift Merge Robot 6 years ago
parent
commit
9b4364de94

+ 9 - 9
roles/openshift_aws/tasks/build_node_group.yml

@@ -6,21 +6,21 @@
   - (openshift_aws_ami == '' and openshift_aws_node_group.group not in openshift_aws_ami_map) or (openshift_aws_node_group.group in openshift_aws_ami_map and openshift_aws_ami_map[openshift_aws_node_group.group] == '')
   block:
   - name: fetch recently created AMI
-    ec2_ami_find:
+    ec2_ami_facts:
       region: "{{ openshift_aws_region }}"
-      sort: creationDate
-      sort_order: descending
-      name: "{{ openshift_aws_ami_name }}*"
-      ami_tags: "{{ openshift_aws_ami_tags }}"
-      no_result_action: fail
+      filters: "{ 'name': '{{ openshift_aws_ami_name }}*',
+             {%- for key in openshift_aws_ami_tags -%}
+                 'tag:{{ key }}': '{{ openshift_aws_ami_tags[key] }}',
+             {%- endfor -%} }"
     register: amiout
+    failed_when: "amiout.images|length == 0"
 
   - name: Set the openshift_aws_ami
     set_fact:
-      openshift_aws_ami: "{{ amiout.results[0].ami_id }}"
+      openshift_aws_ami: "{{ ( amiout.images | sort(attribute='creation_date') | map(attribute='image_id') | reverse | list )[0] }}"
     when:
-    - "'results' in amiout"
-    - amiout.results|length > 0
+    - "'images' in amiout"
+    - amiout.images|length > 0
 
 # query asg's and determine if we need to create the others.
 # if we find more than 1 for each type, and this isn't an upgrade, then exit

+ 4 - 4
roles/openshift_aws/tasks/seal_ami.yml

@@ -13,17 +13,17 @@
 - when: openshift_aws_copy_base_ami_tags | default(False) | bool
   block:
   - name: fetch the ami used to create the instance
-    ec2_ami_find:
+    ec2_ami_facts:
       region: "{{ openshift_aws_region }}"
-      ami_id: "{{ instancesout.instances[0]['image_id'] }}"
+      image_ids: [ "{{ instancesout.instances[0]['image_id'] }}" ]
     register: original_ami_out
     retries: 20
     delay: 3
-    until: original_ami_out.results|length > 0
+    until: original_ami_out.images|length > 0
 
   - name: combine the tags of the original ami with newly created ami
     set_fact:
-      l_openshift_aws_ami_tags: "{{ original_ami_out.results[0]['tags'] | combine(openshift_aws_ami_tags) }}"
+      l_openshift_aws_ami_tags: "{{ original_ami_out.images[0]['tags'] | combine(openshift_aws_ami_tags) }}"
 
 - name: bundle ami
   ec2_ami: