build_base_image.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - name: calculate input image
  6. command: az image list -g "{{ openshift_azure_input_image_ns }}" --query "[?starts_with(name, '{{ openshift_azure_input_image_prefix }}-') && tags.valid=='true'] | sort_by(@, &name) | [-1]"
  7. register: input_image
  8. - name: provision resource group
  9. import_tasks: tasks/provision_instance.yml
  10. - hosts: nodes
  11. tasks:
  12. - name: calculate yum repositories
  13. set_fact:
  14. openshift_additional_repos: "{{ azure_base_repos[ansible_distribution] }}"
  15. - name: configure yum repositories
  16. import_tasks: tasks/yum_certs.yml
  17. - name: update rpms
  18. import_role:
  19. name: os_update_latest
  20. vars:
  21. os_update_latest_reboot: True
  22. - name: deconfigure yum repositories
  23. import_tasks: tasks/remove_yum.yml
  24. - name: run waagent deprovision
  25. command: waagent -deprovision+user -force
  26. args:
  27. chdir: /
  28. - hosts: localhost
  29. gather_facts: no
  30. tasks:
  31. - name: create image
  32. import_tasks: tasks/create_image_from_vm.yml
  33. vars:
  34. image_resource_group: "{{ openshift_azure_output_image_ns }}"
  35. image_name: "{{ openshift_azure_output_image_name }}"
  36. image_tags:
  37. root_image: "{{ (input_image.stdout | from_json).name }}"
  38. kernel: "{{ hostvars[groups['nodes'][0]]['ansible_kernel'] }}"
  39. valid: "true"
  40. - name: create blob
  41. import_tasks: tasks/create_blob_from_vm.yml
  42. vars:
  43. image_name: "{{ openshift_azure_output_image_name }}"
  44. when: openshift_azure_storage_account is defined and openshift_azure_storage_account