create_offer.yml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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_vm_images: |-
  34. { "{{ image_tags.openshift | regex_search('([0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3})') }}": {"osVhdUrl": "{{ openshift_azure_sas_url }}" } }
  35. - name: fetch the current offer and update the versions
  36. oo_azure_rm_publish_image_facts:
  37. offer: "{{ azure_image_publish[image_type].offer }}"
  38. register: offerout
  39. - when:
  40. - offerout['status_code'] != 404
  41. block:
  42. - debug:
  43. msg: "{{ offerout }}"
  44. verbosity: 1
  45. - debug:
  46. msg: "{{ offerout['data']['definition']['plans'][0]['microsoft-azure-virtualmachines.vmImages'] }}"
  47. verbosity: 1
  48. - debug:
  49. msg: "{{ lookup('template', 'offer.yml.j2') }}"
  50. verbosity: 1
  51. - name: bring along the previous offer versions and combine with incoming
  52. yedit:
  53. content: "{{ lookup('template', 'offer.yml.j2') }}"
  54. key: "definition#plans[0]#microsoft-azure-virtualmachines.vmImages#{{ item.key }}"
  55. value: "{{ item.value }}"
  56. separator: '#'
  57. with_dict: "{{ offerout['data']['definition']['plans'][0]['microsoft-azure-virtualmachines.vmImages'] }}"
  58. when:
  59. - "'data' in offerout"
  60. - "'definition' in offerout['data']"
  61. register: yeditout
  62. - debug:
  63. msg: "{{ yeditout }}"
  64. verbosity: 1
  65. - name: create an offer in cloudpartner portal
  66. oo_azure_rm_publish_image:
  67. offer: "{{ azure_image_publish[image_type].offer }}"
  68. 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 }}"
  69. force: "{{ openshift_azure_offer_force |default(False)}}"