build_base_image.yml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. ---
  2. # This playbook ensures that a base image is up to date with all of the required settings
  3. - name: Verify prerequisites for image build
  4. hosts: localhost
  5. connection: local
  6. gather_facts: no
  7. tasks:
  8. - name: Require openshift_gcp_root_image
  9. fail:
  10. msg: "A root OS image name or family is required for base image building. Please ensure `openshift_gcp_root_image` is defined."
  11. when: openshift_gcp_root_image is undefined
  12. - name: Provision ssh key
  13. hosts: localhost
  14. connection: local
  15. gather_facts: no
  16. tasks:
  17. - name: Set up core host GCP configuration
  18. import_role:
  19. name: openshift_gcp
  20. tasks_from: provision_ssh_keys.yml
  21. - name: Launch image build instance
  22. hosts: localhost
  23. connection: local
  24. gather_facts: no
  25. tasks:
  26. - name: Create the image instance disk
  27. gce_pd:
  28. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  29. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  30. project_id: "{{ openshift_gcp_project }}"
  31. zone: "{{ openshift_gcp_zone }}"
  32. name: "{{ openshift_gcp_prefix }}build-image-instance"
  33. disk_type: pd-ssd
  34. image: "{{ openshift_gcp_root_image }}"
  35. size_gb: 10
  36. state: present
  37. - name: Launch the image build instance
  38. gce:
  39. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  40. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  41. project_id: "{{ openshift_gcp_project }}"
  42. zone: "{{ openshift_gcp_zone }}"
  43. machine_type: n1-standard-1
  44. instance_names: "{{ openshift_gcp_prefix }}build-image-instance"
  45. state: present
  46. tags:
  47. - build-image-instance
  48. disk_auto_delete: false
  49. disks:
  50. - "{{ openshift_gcp_prefix }}build-image-instance"
  51. register: gce
  52. - add_host:
  53. hostname: "{{ item.public_ip }}"
  54. groupname: build_instance_ips
  55. with_items: "{{ gce.instance_data }}"
  56. - name: Wait for instance to respond to SSH
  57. wait_for:
  58. delay: 1
  59. host: "{{ item.public_ip }}"
  60. port: 22
  61. state: started
  62. timeout: 120
  63. with_items: "{{ gce.instance_data }}"
  64. - name: Prepare instance content sources
  65. pre_tasks:
  66. - set_fact:
  67. allow_rhel_subscriptions: "{{ rhsub_skip | default('no', True) | lower in ['no', 'false'] }}"
  68. - set_fact:
  69. using_rhel_subscriptions: "{{ (deployment_type in ['enterprise', 'atomic-enterprise', 'openshift-enterprise'] or ansible_distribution == 'RedHat') and allow_rhel_subscriptions }}"
  70. hosts: build_instance_ips
  71. roles:
  72. - role: rhel_subscribe
  73. when: using_rhel_subscriptions
  74. - role: openshift_repos
  75. vars:
  76. openshift_additional_repos: []
  77. post_tasks:
  78. - name: Add custom repositories
  79. include_role:
  80. name: openshift_gcp
  81. tasks_from: add_custom_repositories.yml
  82. - name: Add the Google Cloud repo
  83. yum_repository:
  84. name: google-cloud
  85. description: Google Cloud Compute
  86. baseurl: https://packages.cloud.google.com/yum/repos/google-cloud-compute-el7-x86_64
  87. gpgkey: https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
  88. gpgcheck: yes
  89. repo_gpgcheck: yes
  90. state: present
  91. when: ansible_os_family == "RedHat"
  92. - name: Add the jdetiber-qemu-user-static copr repo
  93. yum_repository:
  94. name: jdetiber-qemu-user-static
  95. description: QEMU user static COPR
  96. baseurl: https://copr-be.cloud.fedoraproject.org/results/jdetiber/qemu-user-static/epel-7-$basearch/
  97. gpgkey: https://copr-be.cloud.fedoraproject.org/results/jdetiber/qemu-user-static/pubkey.gpg
  98. gpgcheck: yes
  99. repo_gpgcheck: no
  100. state: present
  101. when: ansible_os_family == "RedHat"
  102. - name: Accept GPG keys for the repos
  103. command: yum -q makecache -y --disablerepo='*' --enablerepo='google-cloud,jdetiber-qemu-user-static'
  104. - name: Install qemu-user-static
  105. package:
  106. name: qemu-user-static
  107. state: present
  108. - name: Disable yum-cron service (installed by Google Cloud by default)
  109. systemd:
  110. name: yum-cron
  111. state: stopped
  112. enabled: no
  113. - name: Start and enable systemd-binfmt service
  114. systemd:
  115. name: systemd-binfmt
  116. state: started
  117. enabled: yes
  118. - name: Build image
  119. hosts: build_instance_ips
  120. pre_tasks:
  121. - name: Set up core host GCP configuration
  122. include_role:
  123. name: openshift_gcp
  124. tasks_from: configure_gcp_base_image.yml
  125. roles:
  126. - role: os_update_latest
  127. post_tasks:
  128. - name: Disable all repos on RHEL
  129. command: subscription-manager repos --disable="*"
  130. when: using_rhel_subscriptions
  131. - name: Enable repos for packages on RHEL
  132. command: subscription-manager repos --enable="rhel-7-server-rpms" --enable="rhel-7-server-extras-rpms"
  133. when: using_rhel_subscriptions
  134. - name: Install common image prerequisites
  135. package:
  136. name: "{{ pkg_list | join(',') }}"
  137. state: latest
  138. vars:
  139. pkg_list:
  140. # required by Ansible
  141. - PyYAML
  142. - google-compute-engine
  143. - google-compute-engine-init
  144. - google-config
  145. - wget
  146. - git
  147. - net-tools
  148. - bind-utils
  149. - iptables-services
  150. - bridge-utils
  151. - bash-completion
  152. - atomic
  153. - name: Clean yum metadata
  154. command: yum clean all
  155. args:
  156. warn: no
  157. when: ansible_os_family == "RedHat"
  158. - name: Commit image
  159. hosts: localhost
  160. connection: local
  161. tasks:
  162. - name: Terminate the image build instance
  163. gce:
  164. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  165. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  166. project_id: "{{ openshift_gcp_project }}"
  167. zone: "{{ openshift_gcp_zone }}"
  168. instance_names: "{{ openshift_gcp_prefix }}build-image-instance"
  169. state: absent
  170. - name: Save the new image
  171. command: gcloud --project "{{ openshift_gcp_project}}" compute images create "{{ openshift_gcp_base_image_name | default(openshift_gcp_base_image + '-' + lookup('pipe','date +%Y%m%d-%H%M%S')) }}" --source-disk "{{ openshift_gcp_prefix }}build-image-instance" --source-disk-zone "{{ openshift_gcp_zone }}" --family "{{ openshift_gcp_base_image }}"
  172. - name: Remove the image instance disk
  173. gce_pd:
  174. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  175. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  176. project_id: "{{ openshift_gcp_project }}"
  177. zone: "{{ openshift_gcp_zone }}"
  178. name: "{{ openshift_gcp_prefix }}build-image-instance"
  179. state: absent