build_image.yml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. ---
  2. - name: Verify prerequisites for image build
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. tasks:
  7. - name: Require openshift_gcp_base_image
  8. fail:
  9. msg: "A base image name or family is required for image building. Please ensure `openshift_gcp_base_image` is defined."
  10. when: openshift_gcp_base_image is undefined
  11. - name: Provision ssh key
  12. hosts: localhost
  13. connection: local
  14. gather_facts: no
  15. tasks:
  16. - name: Set up core host GCP configuration
  17. import_role:
  18. name: openshift_gcp
  19. tasks_from: provision_ssh_keys.yml
  20. - name: Launch image build instance
  21. hosts: localhost
  22. connection: local
  23. gather_facts: no
  24. tasks:
  25. - name: Set facts
  26. set_fact:
  27. openshift_master_unsupported_embedded_etcd: True
  28. - name: Create the image instance disk
  29. gce_pd:
  30. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  31. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  32. project_id: "{{ openshift_gcp_project }}"
  33. zone: "{{ openshift_gcp_zone }}"
  34. name: "{{ openshift_gcp_prefix }}build-image-instance"
  35. disk_type: pd-ssd
  36. image: "{{ openshift_gcp_base_image }}"
  37. size_gb: 10
  38. state: present
  39. - name: Launch the image build instance
  40. gce:
  41. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  42. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  43. project_id: "{{ openshift_gcp_project }}"
  44. zone: "{{ openshift_gcp_zone }}"
  45. machine_type: n1-standard-1
  46. instance_names: "{{ openshift_gcp_prefix }}build-image-instance"
  47. state: present
  48. tags:
  49. - build-image-instance
  50. disk_auto_delete: false
  51. disks:
  52. - "{{ openshift_gcp_prefix }}build-image-instance"
  53. register: gce
  54. - name: add host to nodes
  55. add_host:
  56. hostname: "{{ item.public_ip }}"
  57. groupname: nodes
  58. with_items: "{{ gce.instance_data }}"
  59. - name: Wait for instance to respond to SSH
  60. wait_for:
  61. delay: 1
  62. host: "{{ item.public_ip }}"
  63. port: 22
  64. state: started
  65. timeout: 120
  66. with_items: "{{ gce.instance_data }}"
  67. - name: Wait for full SSH connection
  68. hosts: nodes
  69. gather_facts: no
  70. tasks:
  71. - wait_for_connection:
  72. - name: Add custom repositories
  73. hosts: nodes
  74. handlers:
  75. - import_tasks: ../../roles/openshift_repos/handlers/main.yml
  76. tasks:
  77. - include_role:
  78. name: openshift_gcp
  79. tasks_from: add_custom_repositories.yml
  80. # This is the part that installs all of the software and configs for the instance
  81. # to become a node.
  82. - import_playbook: ../../openshift-node/private/image_prep.yml
  83. # Add additional GCP specific behavior
  84. - hosts: nodes
  85. tasks:
  86. - include_role:
  87. name: openshift_gcp
  88. tasks_from: node_cloud_config.yml
  89. - include_role:
  90. name: openshift_gcp
  91. tasks_from: frequent_log_rotation.yml
  92. - name: Commit image
  93. hosts: localhost
  94. connection: local
  95. tasks:
  96. - name: Terminate the image build instance
  97. gce:
  98. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  99. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  100. project_id: "{{ openshift_gcp_project }}"
  101. zone: "{{ openshift_gcp_zone }}"
  102. instance_names: "{{ openshift_gcp_prefix }}build-image-instance"
  103. state: absent
  104. - name: Save the new image
  105. command: >
  106. gcloud
  107. --project {{ openshift_gcp_project}} compute images create {{ (openshift_gcp_image_name | default(openshift_gcp_image + '-' + lookup('pipe','date +%Y%m%d-%H%M%S'))) | quote }}
  108. --source-disk {{ (openshift_gcp_prefix + 'build-image-instance') | quote }}
  109. --source-disk-zone {{ openshift_gcp_zone | quote }}
  110. --family {{ openshift_gcp_image | quote }}
  111. {% if openshift_gcp_licenses is defined %} --licenses {{ openshift_gcp_licenses | quote }}{% endif %}
  112. - name: Remove the image instance disk
  113. gce_pd:
  114. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  115. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  116. project_id: "{{ openshift_gcp_project }}"
  117. zone: "{{ openshift_gcp_zone }}"
  118. name: "{{ openshift_gcp_prefix }}build-image-instance"
  119. state: absent