seal_ami.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ---
  2. - name: fetch newly created instances
  3. ec2_instance_facts:
  4. region: "{{ openshift_aws_region }}"
  5. filters:
  6. "tag:Name": "{{ openshift_aws_base_ami_name }}"
  7. instance-state-name: running
  8. register: instancesout
  9. retries: 20
  10. delay: 3
  11. until: instancesout.instances|length > 0
  12. - when: openshift_aws_copy_base_ami_tags | default(False) | bool
  13. block:
  14. - name: fetch the ami used to create the instance
  15. ec2_ami_find:
  16. region: "{{ openshift_aws_region }}"
  17. ami_id: "{{ instancesout.instances[0]['image_id'] }}"
  18. register: original_ami_out
  19. retries: 20
  20. delay: 3
  21. until: original_ami_out.results|length > 0
  22. - name: combine the tags of the original ami with newly created ami
  23. set_fact:
  24. l_openshift_aws_ami_tags: "{{ original_ami_out.results[0]['tags'] | combine(openshift_aws_ami_tags) }}"
  25. - name: bundle ami
  26. ec2_ami:
  27. instance_id: "{{ instancesout.instances.0.instance_id }}"
  28. region: "{{ openshift_aws_region }}"
  29. state: present
  30. description: "This was provisioned {{ ansible_date_time.iso8601 }}"
  31. name: "{{ openshift_aws_ami_name }}"
  32. tags: "{{ l_openshift_aws_ami_tags if l_openshift_aws_ami_tags is defined and l_openshift_aws_ami_tags != {} else openshift_aws_ami_tags }}"
  33. wait: yes
  34. register: amioutput
  35. - debug: var=amioutput
  36. - when: openshift_aws_ami_encrypt | bool
  37. block:
  38. - name: augment the encrypted ami tags with source-ami
  39. set_fact:
  40. source_tag:
  41. source-ami: "{{ amioutput.image_id }}"
  42. - name: copy the ami for encrypted disks
  43. include_tasks: ami_copy.yml
  44. vars:
  45. openshift_aws_ami_copy_name: "{{ openshift_aws_ami_name }}-encrypted"
  46. openshift_aws_ami_copy_src_ami: "{{ amioutput.image_id }}"
  47. # TODO: How does the kms alias get passed to ec2_ami_copy
  48. openshift_aws_ami_copy_kms_alias: "alias/{{ openshift_aws_clusterid }}_kms"
  49. openshift_aws_ami_copy_tags: "{{ source_tag | combine(openshift_aws_ami_tags) }}"
  50. # this option currently fails due to boto waiters
  51. # when supported this need to be reapplied
  52. #openshift_aws_ami_copy_wait: True
  53. - name: terminate temporary instance
  54. ec2:
  55. state: absent
  56. region: "{{ openshift_aws_region }}"
  57. instance_ids: "{{ instancesout.instances.0.instance_id }}"