build_image.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. # This is the part that installs all of the software and configs for the instance
  73. # to become a node.
  74. - import_playbook: ../../openshift-node/private/image_prep.yml
  75. # Add additional GCP specific behavior
  76. - hosts: nodes
  77. tasks:
  78. - include_role:
  79. name: openshift_gcp
  80. tasks_from: node_cloud_config.yml
  81. - include_role:
  82. name: openshift_gcp
  83. tasks_from: frequent_log_rotation.yml
  84. - name: Commit image
  85. hosts: localhost
  86. connection: local
  87. tasks:
  88. - name: Terminate the image build instance
  89. gce:
  90. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  91. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  92. project_id: "{{ openshift_gcp_project }}"
  93. zone: "{{ openshift_gcp_zone }}"
  94. instance_names: "{{ openshift_gcp_prefix }}build-image-instance"
  95. state: absent
  96. - name: Save the new image
  97. 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 }}"
  98. - name: Remove the image instance disk
  99. gce_pd:
  100. service_account_email: "{{ (lookup('file', openshift_gcp_iam_service_account_keyfile ) | from_json ).client_email }}"
  101. credentials_file: "{{ openshift_gcp_iam_service_account_keyfile }}"
  102. project_id: "{{ openshift_gcp_project }}"
  103. zone: "{{ openshift_gcp_zone }}"
  104. name: "{{ openshift_gcp_prefix }}build-image-instance"
  105. state: absent