seal_ami.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ---
  2. - name: Remove any ansible facts created during AMI creation
  3. file:
  4. path: "/etc/ansible/facts.d/{{ item }}"
  5. state: absent
  6. with_items:
  7. - openshift.fact
  8. - name: fetch newly created instances
  9. ec2_remote_facts:
  10. region: "{{ openshift_aws_region }}"
  11. filters:
  12. "tag:Name": "{{ openshift_aws_base_ami_name }}"
  13. instance-state-name: running
  14. register: instancesout
  15. retries: 20
  16. delay: 3
  17. until: instancesout.instances|length > 0
  18. - name: bundle ami
  19. ec2_ami:
  20. instance_id: "{{ instancesout.instances.0.id }}"
  21. region: "{{ openshift_aws_region }}"
  22. state: present
  23. description: "This was provisioned {{ ansible_date_time.iso8601 }}"
  24. name: "{{ openshift_aws_ami_name }}"
  25. tags: "{{ openshift_aws_ami_tags }}"
  26. wait: yes
  27. register: amioutput
  28. - debug: var=amioutput
  29. - when: openshift_aws_ami_encrypt | bool
  30. block:
  31. - name: augment the encrypted ami tags with source-ami
  32. set_fact:
  33. source_tag:
  34. source-ami: "{{ amioutput.image_id }}"
  35. - name: copy the ami for encrypted disks
  36. include: ami_copy.yml
  37. vars:
  38. openshift_aws_ami_copy_name: "{{ openshift_aws_ami_name }}-encrypted"
  39. openshift_aws_ami_copy_src_ami: "{{ amioutput.image_id }}"
  40. # TODO: How does the kms alias get passed to ec2_ami_copy
  41. openshift_aws_ami_copy_kms_alias: "alias/{{ openshift_aws_clusterid }}_kms"
  42. openshift_aws_ami_copy_tags: "{{ source_tag | combine(openshift_aws_ami_tags) }}"
  43. # this option currently fails due to boto waiters
  44. # when supported this need to be reapplied
  45. #openshift_aws_ami_copy_wait: True
  46. - name: terminate temporary instance
  47. ec2:
  48. state: absent
  49. region: "{{ openshift_aws_region }}"
  50. instance_ids: "{{ instancesout.instances.0.id }}"