build_image.yml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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_node_bootstrap: True
  28. openshift_master_unsupported_embedded_etcd: True
  29. - name: Create the image instance disk
  30. gce_pd:
  31. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  32. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  33. project_id: "{{ openshift_gcp_project }}"
  34. zone: "{{ openshift_gcp_zone }}"
  35. name: "{{ openshift_gcp_prefix }}build-image-instance"
  36. disk_type: pd-ssd
  37. image: "{{ openshift_gcp_base_image }}"
  38. size_gb: 10
  39. state: present
  40. - name: Launch the image build instance
  41. gce:
  42. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  43. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  44. project_id: "{{ openshift_gcp_project }}"
  45. zone: "{{ openshift_gcp_zone }}"
  46. machine_type: n1-standard-1
  47. instance_names: "{{ openshift_gcp_prefix }}build-image-instance"
  48. state: present
  49. tags:
  50. - build-image-instance
  51. disk_auto_delete: false
  52. disks:
  53. - "{{ openshift_gcp_prefix }}build-image-instance"
  54. register: gce
  55. - name: add host to nodes
  56. add_host:
  57. hostname: "{{ item.public_ip }}"
  58. groupname: nodes
  59. with_items: "{{ gce.instance_data }}"
  60. - name: Wait for instance to respond to SSH
  61. wait_for:
  62. delay: 1
  63. host: "{{ item.public_ip }}"
  64. port: 22
  65. state: started
  66. timeout: 120
  67. with_items: "{{ gce.instance_data }}"
  68. - name: Wait for full SSH connection
  69. hosts: nodes
  70. gather_facts: no
  71. tasks:
  72. - wait_for_connection:
  73. - hosts: nodes
  74. tasks:
  75. - name: Set facts
  76. set_fact:
  77. openshift_node_bootstrap: True
  78. # This is the part that installs all of the software and configs for the instance
  79. # to become a node.
  80. - import_playbook: ../../openshift-node/private/image_prep.yml
  81. # Add additional GCP specific behavior
  82. - hosts: nodes
  83. tasks:
  84. - include_role:
  85. name: openshift_gcp
  86. tasks_from: node_cloud_config.yml
  87. - include_role:
  88. name: openshift_gcp
  89. tasks_from: frequent_log_rotation.yml
  90. - name: Commit image
  91. hosts: localhost
  92. connection: local
  93. tasks:
  94. - name: Terminate the image build instance
  95. gce:
  96. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  97. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  98. project_id: "{{ openshift_gcp_project }}"
  99. zone: "{{ openshift_gcp_zone }}"
  100. instance_names: "{{ openshift_gcp_prefix }}build-image-instance"
  101. state: absent
  102. - name: Save the new image
  103. command: gcloud --project "{{ openshift_gcp_project}}" compute images create "{{ openshift_gcp_image_name | default(openshift_gcp_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_image }}"
  104. - name: Remove the image instance disk
  105. gce_pd:
  106. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  107. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  108. project_id: "{{ openshift_gcp_project }}"
  109. zone: "{{ openshift_gcp_zone }}"
  110. name: "{{ openshift_gcp_prefix }}build-image-instance"
  111. state: absent