launch.yml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - import_role:
  6. name: lib_utils
  7. - name: calculate input image
  8. 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]"
  9. register: input_image
  10. - name: create temporary directory
  11. tempfile:
  12. state: directory
  13. register: tmp
  14. - name: download acs-engine
  15. get_url:
  16. url: "{{ item }}"
  17. dest: "{{ tmp.path }}/"
  18. with_list:
  19. - "http://acs-engine-build-acs-engine-build.svc.ci.openshift.org/acs-engine"
  20. - "http://acs-engine-build-acs-engine-build.svc.ci.openshift.org/openshift.json"
  21. - name: make acs-engine executable
  22. file:
  23. path: "{{ tmp.path }}/acs-engine"
  24. mode: 0755
  25. - name: configure acs-engine
  26. yedit:
  27. content_type: json
  28. src: "{{ tmp.path }}/openshift.json"
  29. edits:
  30. - key: properties.orchestratorProfile.openShiftConfig.clusterUsername
  31. value: demo
  32. - key: properties.orchestratorProfile.openShiftConfig.clusterPassword
  33. value: "{{ 16 | lib_utils_oo_random_word }}"
  34. - key: properties.orchestratorProfile.orchestratorVersion
  35. value: unstable
  36. # azProfile
  37. - key: properties.azProfile.tenantId
  38. value: "{{ lookup('env', 'AZURE_TENANT') }}"
  39. - key: properties.azProfile.subscriptionId
  40. value: "{{ lookup('env', 'AZURE_SUBSCRIPTION_ID') }}"
  41. - key: properties.azProfile.resourceGroup
  42. value: "{{ openshift_azure_resource_group_name }}"
  43. - key: properties.azProfile.location
  44. value: "{{ openshift_azure_resource_location }}"
  45. # masterProfile
  46. - key: properties.masterProfile.dnsPrefix
  47. value: "a{{ 16 | lib_utils_oo_random_word }}a"
  48. - key: properties.masterProfile.imageReference.name
  49. value: "{{ (input_image.stdout | from_json).name }}"
  50. - key: properties.masterProfile.imageReference.resourceGroup
  51. value: "{{ openshift_azure_input_image_ns }}"
  52. # agentpool compute
  53. - key: properties.agentPoolProfiles[0].imageReference.name
  54. value: "{{ (input_image.stdout | from_json).name }}"
  55. - key: properties.agentPoolProfiles[0].imageReference.resourceGroup
  56. value: "{{ openshift_azure_input_image_ns }}"
  57. # agentpool infra
  58. - key: properties.agentPoolProfiles[1].imageReference.name
  59. value: "{{ (input_image.stdout | from_json).name }}"
  60. - key: properties.agentPoolProfiles[1].imageReference.resourceGroup
  61. value: "{{ openshift_azure_input_image_ns }}"
  62. # linuxprofile
  63. - key: properties.linuxProfile.adminUsername
  64. value: "cloud-user"
  65. - key: properties.linuxProfile.ssh.publicKeys[0].keyData
  66. value: "{{ openshift_azure_vm_ssh_public_key }}"
  67. # serviceprincipal
  68. - key: properties.servicePrincipalProfile.clientId
  69. value: "{{ lookup('env', 'AZURE_CLIENT_ID') }}"
  70. - key: properties.servicePrincipalProfile.secret
  71. value: "{{ lookup('env', 'AZURE_SECRET') }}"
  72. - name: run acs-engine deploy
  73. command: |
  74. {{ tmp.path }}/acs-engine deploy \
  75. --resource-group {{ openshift_azure_resource_group_name }} \
  76. --location {{ openshift_azure_resource_location }} \
  77. --subscription-id {{ lookup('env', 'AZURE_SUBSCRIPTION_ID') }} \
  78. --auth-method client_secret \
  79. --client-id {{ lookup('env', 'AZURE_CLIENT_ID') }} \
  80. --client-secret {{ lookup('env', 'AZURE_SECRET') }} \
  81. {{ tmp.path }}/openshift.json
  82. ignore_errors: yes
  83. register: deploy
  84. - name: delete temporary directory
  85. file:
  86. path: "{{ tmp.path }}"
  87. state: absent
  88. - block:
  89. - name: get azure deployment message
  90. command: >
  91. az group deployment list
  92. -g "{{ openshift_azure_resource_group_name }}"
  93. --query "[0].properties.additionalProperties.error.details[0].message"
  94. -o tsv
  95. register: message
  96. - debug:
  97. msg: "{{ (message.stdout | from_json).error.details[0].message }}"
  98. - assert:
  99. that: "{{ not deploy.failed }}"
  100. when: deploy.failed