create_machineset.yml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ---
  2. - name: Create machineset_name
  3. set_fact:
  4. machineset_name: "{{ item.metadata.name ~ '-rhel'}}"
  5. - name: Update machineset definition
  6. set_fact:
  7. machineset: "{{ item | combine(dict_edit, recursive=True) }}"
  8. vars:
  9. dict_edit:
  10. metadata:
  11. name: "{{ machineset_name }}"
  12. resourceVersion: ""
  13. spec:
  14. selector:
  15. matchLabels:
  16. machine.openshift.io/cluster-api-machineset: "{{ machineset_name }}"
  17. template:
  18. metadata:
  19. labels:
  20. machine.openshift.io/cluster-api-machineset: "{{ machineset_name }}"
  21. spec:
  22. providerSpec:
  23. value:
  24. ami:
  25. id: "{{ openshift_aws_scaleup_ami }}"
  26. keyName: "{{ openshift_aws_scaleup_key }}"
  27. - name: Import machineset definition
  28. k8s:
  29. kubeconfig: "{{ kubeconfig_path }}"
  30. definition: "{{ machineset | to_yaml }}"
  31. - block:
  32. - name: Get machines in the machineset
  33. command: >
  34. oc get machine
  35. --kubeconfig={{ kubeconfig_path }}
  36. --namespace=openshift-machine-api
  37. --selector='machine.openshift.io/cluster-api-machineset={{ machineset_name }}'
  38. --output=json
  39. register: oc_get_machine
  40. changed_when: false
  41. - name: Create list of machines
  42. set_fact:
  43. worker_machines: "{{ (oc_get_machine.stdout | from_json)['items'] | map(attribute='metadata.name') | list }}"
  44. - name: Wait for machines to be provisioned
  45. command: >
  46. oc get machine {{ item }}
  47. --kubeconfig={{ kubeconfig_path }}
  48. --namespace=openshift-machine-api
  49. --output=json
  50. loop: "{{ worker_machines }}"
  51. register: new_machine
  52. until:
  53. - new_machine.stdout != ''
  54. - (new_machine.stdout | from_json).status is defined
  55. - (new_machine.stdout | from_json).status.phase == 'Provisioned'
  56. retries: 36
  57. delay: 5
  58. changed_when: false
  59. - name: Get machines in the machineset after provisioning
  60. command: >
  61. oc get machine
  62. --kubeconfig={{ kubeconfig_path }}
  63. --namespace=openshift-machine-api
  64. --selector='machine.openshift.io/cluster-api-machineset={{ machineset_name }}'
  65. --output=json
  66. register: oc_get_machine
  67. changed_when: false
  68. - name: Add hostname to new_workers_list
  69. set_fact:
  70. new_workers_list: "{{ new_workers_list + [ item.status.addresses | selectattr('type', 'match', '^InternalDNS$') | map(attribute='address') | first ] }}"
  71. loop: "{{ (oc_get_machine.stdout | from_json)['items'] }}"
  72. rescue:
  73. - name: Machine creation failed
  74. fail:
  75. msg: "Machine creation failed, error: {{ new_machine.resources[0].status.errorMessage }}"
  76. - name: Add machine to the inventory
  77. add_host:
  78. name: "{{ item }}"
  79. node_name: "{{ item }}"
  80. groups: new_workers
  81. ansible_ssh_common_args: "-o ProxyCommand=\"ssh -o IdentityFile='{{ openshift_aws_scaleup_key_path | default('/opt/app-root/src/.ssh/id_rsa') }}' -o ConnectTimeout=30 -o ConnectionAttempts=100 -o StrictHostKeyChecking=no -W %h:%p -q core@{{ ssh_bastion }}\""
  82. loop: "{{ new_workers_list }}"