build_base_image.yml 6.0 KB

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