build_image.yml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. ---
  2. - name: Verify image build prerequisites
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. tasks:
  7. - name: Require openshift_openstack_build_base_image
  8. fail:
  9. msg: "A base image name is required for image building. Please ensure `openshift_openstack_build_base_image` is defined."
  10. when: openshift_openstack_build_base_image is undefined
  11. - name: Require openshift_openstack_default_image_name
  12. fail:
  13. msg: >
  14. You must specify the name the new image will be saved to Glance as.
  15. Please make sure `openshift_openstack_default_image_name` is defined.
  16. when:
  17. - openshift_openstack_default_image_name is not defined
  18. - name: Get the target image facts
  19. os_image_facts:
  20. image: "{{ openshift_openstack_default_image_name }}"
  21. register: image_check
  22. - name: Verify that the resulting image does not exist
  23. fail:
  24. msg: >
  25. The image "{{ openshift_openstack_default_image_name }}" specified in
  26. `openshift_openstack_default_image_name` exists already.
  27. Please choose a different name or delete it.
  28. when: image_check.ansible_facts.openstack_image
  29. - set_fact:
  30. build_prefix: "{{ openshift_openstack_clusterid|default('build') }}.{{ openshift_openstack_public_dns_domain|default('example.com') }}-build"
  31. - name: Launch image build instance
  32. hosts: localhost
  33. connection: local
  34. gather_facts: yes
  35. tasks:
  36. # NOTE: we create a temporary network, subnet, router and security groups
  37. # to have a known environment to launch the image build VM in.
  38. # They get deleted once we save the image.
  39. # TODO(shadower): allow specifying an existing subnet etc. instead.
  40. - name: Create a network
  41. os_network:
  42. name: "{{ build_prefix }}-network"
  43. register: network
  44. - name: Create a subnet
  45. os_subnet:
  46. name: "{{ build_prefix }}-subnet"
  47. network_name: "{{ network.network.name }}"
  48. cidr: "{{ openshift_openstack_build_network_cidr | default('192.168.23.0/24') }}"
  49. register: subnet
  50. - name: Create the router
  51. os_router:
  52. name: "{{ build_prefix }}-router"
  53. network: "{{ openshift_openstack_external_network_name }}"
  54. interfaces:
  55. - "{{ subnet.id }}"
  56. register: router
  57. - name: Create a security group
  58. os_security_group:
  59. name: "{{ build_prefix }}-security-group"
  60. description: Security group for the image build server
  61. register: security_group
  62. - name: Allow pinging the server
  63. os_security_group_rule:
  64. security_group: "{{ security_group.id }}"
  65. protocol: icmp
  66. port_range_min: -1
  67. port_range_max: -1
  68. - name: Allow SSH access
  69. os_security_group_rule:
  70. security_group: "{{ security_group.id }}"
  71. protocol: tcp
  72. port_range_min: 22
  73. port_range_max: 22
  74. - name: Launch the image build instance
  75. os_server:
  76. name: "{{ build_prefix }}-image-server"
  77. network: "{{ network.id }}"
  78. auto_ip: yes
  79. flavor: "{{ openshift_openstack_default_flavor }}"
  80. image: "{{ openshift_openstack_build_base_image }}"
  81. key_name: "{{ openshift_openstack_keypair_name }}"
  82. security_groups:
  83. - "{{ security_group.id }}"
  84. # Create a known SSH user so we can log in to the VM.
  85. # TODO(shadower): should we create a temporary keypair & user here
  86. # and delete it when done?
  87. userdata: |
  88. #cloud-config
  89. system_info:
  90. default_user:
  91. name: {{ ansible_user|default('openshift') }}
  92. sudo: ["ALL=(ALL) NOPASSWD: ALL"]
  93. write_files:
  94. - path: /etc/sudoers.d/00-openshift-no-requiretty
  95. permissions: 440
  96. content: |
  97. Defaults:{{ ansible_user|default('openshift') }} !requiretty
  98. state: present
  99. register: image_vm
  100. - name: Add host to nodes
  101. add_host:
  102. name: "{{ image_vm.openstack.accessIPv4 }}"
  103. groups: nodes,OSEv3
  104. ansible_become: true
  105. - name: Wait for instance to respond to SSH
  106. wait_for:
  107. delay: 1
  108. host: "{{ image_vm.openstack.accessIPv4 }}"
  109. port: 22
  110. state: started
  111. timeout: 120
  112. - name: Wait for full SSH connection
  113. hosts: nodes
  114. gather_facts: no
  115. tasks:
  116. - wait_for_connection:
  117. - setup:
  118. - set_fact:
  119. openshift_node_image_prep_packages:
  120. - cloud-init
  121. - cloud-utils-growpart
  122. # This is the part that installs all of the software and configs for the instance
  123. # to become a node.
  124. - import_playbook: ../../openshift-node/private/image_prep.yml
  125. - name: Commit image
  126. hosts: localhost
  127. connection: local
  128. tasks:
  129. - name: Stop the image VM
  130. os_server_action:
  131. server: "{{ image_vm.id }}"
  132. action: stop
  133. - name: Save the new image
  134. command: openstack server image create --wait --name "{{ openshift_openstack_default_image_name }}" "{{ image_vm.id }}"
  135. # Remove the temporary OpenStack resources
  136. - name: Remove the imabe build instance
  137. os_server:
  138. name: "{{ image_vm.id }}"
  139. state: absent
  140. - name: Remove the security group
  141. os_security_group:
  142. name: "{{ security_group.id }}"
  143. state: absent
  144. - name: Remove the router
  145. os_router:
  146. name: "{{ router.id }}"
  147. state: absent
  148. - name: Remove the subnet
  149. os_subnet:
  150. name: "{{ subnet.id }}"
  151. state: absent
  152. - name: Remove the network
  153. os_network:
  154. name: "{{ network.id }}"
  155. state: absent