123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- ---
- - hosts: localhost
- gather_facts: no
- tasks:
- - import_role:
- name: lib_utils
- - name: calculate input image
- 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]"
- register: input_image
- - name: create temporary directory
- tempfile:
- state: directory
- register: tmp
- - name: download acs-engine
- get_url:
- url: "{{ item }}"
- dest: "{{ tmp.path }}/"
- with_list:
- - "http://acs-engine-build-acs-engine-build.svc.ci.openshift.org/acs-engine"
- - "http://acs-engine-build-acs-engine-build.svc.ci.openshift.org/openshift.json"
- - name: make acs-engine executable
- file:
- path: "{{ tmp.path }}/acs-engine"
- mode: 0755
- - name: configure acs-engine
- yedit:
- content_type: json
- src: "{{ tmp.path }}/openshift.json"
- edits:
- - key: properties.orchestratorProfile.openShiftConfig.clusterUsername
- value: demo
- - key: properties.orchestratorProfile.openShiftConfig.clusterPassword
- value: "{{ 16 | lib_utils_oo_random_word }}"
- - key: properties.orchestratorProfile.orchestratorVersion
- value: unstable
- # azProfile
- - key: properties.azProfile.tenantId
- value: "{{ lookup('env', 'AZURE_TENANT') }}"
- - key: properties.azProfile.subscriptionId
- value: "{{ lookup('env', 'AZURE_SUBSCRIPTION_ID') }}"
- - key: properties.azProfile.resourceGroup
- value: "{{ openshift_azure_resource_group_name }}"
- - key: properties.azProfile.location
- value: "{{ openshift_azure_resource_location }}"
- # masterProfile
- - key: properties.masterProfile.dnsPrefix
- value: "a{{ 16 | lib_utils_oo_random_word }}a"
- - key: properties.masterProfile.imageReference.name
- value: "{{ (input_image.stdout | from_json).name }}"
- - key: properties.masterProfile.imageReference.resourceGroup
- value: "{{ openshift_azure_input_image_ns }}"
- # agentpool compute
- - key: properties.agentPoolProfiles[0].imageReference.name
- value: "{{ (input_image.stdout | from_json).name }}"
- - key: properties.agentPoolProfiles[0].imageReference.resourceGroup
- value: "{{ openshift_azure_input_image_ns }}"
- # agentpool infra
- - key: properties.agentPoolProfiles[1].imageReference.name
- value: "{{ (input_image.stdout | from_json).name }}"
- - key: properties.agentPoolProfiles[1].imageReference.resourceGroup
- value: "{{ openshift_azure_input_image_ns }}"
- # linuxprofile
- - key: properties.linuxProfile.adminUsername
- value: "cloud-user"
- - key: properties.linuxProfile.ssh.publicKeys[0].keyData
- value: "{{ openshift_azure_vm_ssh_public_key }}"
- # serviceprincipal
- - key: properties.servicePrincipalProfile.clientId
- value: "{{ lookup('env', 'AZURE_CLIENT_ID') }}"
- - key: properties.servicePrincipalProfile.secret
- value: "{{ lookup('env', 'AZURE_SECRET') }}"
- - name: run acs-engine deploy
- command: |
- {{ tmp.path }}/acs-engine deploy \
- --resource-group {{ openshift_azure_resource_group_name }} \
- --location {{ openshift_azure_resource_location }} \
- --subscription-id {{ lookup('env', 'AZURE_SUBSCRIPTION_ID') }} \
- --auth-method client_secret \
- --client-id {{ lookup('env', 'AZURE_CLIENT_ID') }} \
- --client-secret {{ lookup('env', 'AZURE_SECRET') }} \
- {{ tmp.path }}/openshift.json
- ignore_errors: yes
- register: deploy
- - name: delete temporary directory
- file:
- path: "{{ tmp.path }}"
- state: absent
- - block:
- - name: get azure deployment message
- command: >
- az group deployment list
- -g "{{ openshift_azure_resource_group_name }}"
- --query "[0].properties.additionalProperties.error.details[0].message"
- -o tsv
- register: message
- - debug:
- msg: "{{ (message.stdout | from_json).error.details[0].message }}"
- - assert:
- that: "{{ not deploy.failed }}"
- when: deploy.failed
|