create_and_publish_offer.yml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - name: ensure libraries are available
  6. import_role:
  7. name: lib_utils
  8. - name: set expire date
  9. set_fact:
  10. sas_expire: "{{ lookup('pipe', 'date -d \"14 days\" +\"%Y-%m-%dT%H:%M:00Z\"') }}"
  11. disk: "{{ image_name }}.vhd"
  12. - name: fetch the image for the tags
  13. command: |
  14. az image list --resource-group images -o json --query "[?name=='{{ image_name }}'].tags"
  15. register: imagetags
  16. - name: generate storage blob url
  17. command: |
  18. az storage blob url -c {{ openshift_azure_container }} --account-name {{ openshift_azure_storage_account }} -n {{ disk }} --output=json
  19. register: bloburl
  20. - name: generate sas url for the container
  21. command: |
  22. az storage container generate-sas --name {{ openshift_azure_container }} --account-name {{ openshift_azure_storage_account }} --permissions rl --expiry {{ sas_expire }} --output=json
  23. register: sasurl
  24. - name: set the sas URLS
  25. set_fact:
  26. openshift_azure_sas_url: "{{ bloburl.stdout|from_json + '?' + sasurl.stdout|from_json }}"
  27. - name: set the image tags
  28. set_fact:
  29. image_tags: "{{ (imagetags.stdout | from_json)[0] }}"
  30. - name: set the image_type
  31. set_fact:
  32. image_type: "{{ 'rhel' if 'rhel' in image_tags.base_image else 'centos' }}"
  33. image_x: "{{ image_tags.openshift.split('.')[0] }}"
  34. image_y: "{{ image_tags.openshift.split('.')[1] }}"
  35. image_z: "{{ image_tags.openshift.split('.')[2] }}"
  36. image_vm_images: |-
  37. { "{{ image_x }}{{ image_y }}.{{ image_z }}.{{ (image_name | regex_search('([0-9]{12})'))[:8] }}": {"osVhdUrl": "{{ openshift_azure_sas_url }}" } }
  38. - name: fetch the current offer and update the versions
  39. oo_azure_rm_publish_image_facts:
  40. offer: osa
  41. register: offerout
  42. - when:
  43. - offerout['status_code'] != 404
  44. block:
  45. - debug:
  46. msg: "{{ offerout }}"
  47. verbosity: 1
  48. - debug:
  49. msg: "{{ offerout['data']['definition']['plans'][0]['microsoft-azure-virtualmachines.vmImages'] }}"
  50. verbosity: 1
  51. - debug:
  52. msg: "{{ lookup('template', 'offer.yml.j2') }}"
  53. verbosity: 1
  54. - name: bring along the previous offer versions and combine with incoming
  55. yedit:
  56. content: "{{ lookup('template', 'offer.yml.j2') }}"
  57. key: "definition#plans[0]#microsoft-azure-virtualmachines.vmImages#{{ item.key }}"
  58. value: "{{ item.value }}"
  59. separator: '#'
  60. with_dict: "{{ offerout['data']['definition']['plans'][0]['microsoft-azure-virtualmachines.vmImages'] }}"
  61. when:
  62. - "'data' in offerout"
  63. - "'definition' in offerout['data']"
  64. register: yeditout
  65. - debug:
  66. msg: "{{ yeditout }}"
  67. verbosity: 1
  68. # this cancel operation returns a 202 whether it cancelled or not.
  69. - name: cancel publish operation
  70. oo_azure_rm_publish_image:
  71. offer: osa
  72. state: cancel_op
  73. - name: create|update an offer in cloudpartner portal
  74. oo_azure_rm_publish_image:
  75. offer: osa
  76. offer_data: "{{ (lookup('template', 'offer.yml.j2') | from_yaml) if 'skipped' in yeditout and yeditout.skipped or not yeditout.changed else yeditout.results[0].result[0].edit }}"
  77. force: True
  78. - name: publish this offer
  79. oo_azure_rm_publish_image:
  80. state: publish
  81. offer: osa
  82. emails: "{{ openshift_azure_image_publish_emails }}"