build_node_image.yml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - name: calculate input image
  6. command: az image list -g "{{ openshift_azure_input_image_ns }}" --query "[?starts_with(name, '{{ openshift_azure_input_image_prefix }}-') && tags.valid=='true'] | sort_by(@, &name) | [-1]"
  7. register: input_image
  8. - name: provision resource group
  9. import_tasks: tasks/provision_instance.yml
  10. vars:
  11. create_args: --data-disk-sizes-gb 128
  12. - set_fact:
  13. openshift_node_bootstrap: True
  14. - hosts: nodes
  15. tasks:
  16. - set_fact:
  17. openshift_deployment_type: "{{ 'openshift-enterprise' if ansible_distribution == 'RedHat' else 'origin' }}"
  18. openshift_enable_origin_repo: False
  19. openshift_node_bootstrap: True
  20. skip_node_svc_handlers: True
  21. openshift_additional_repos: "{{ azure_node_repos[ansible_distribution] }}"
  22. openshift_node_include_control_plane: True
  23. openshift_control_plane_static_pod_location: /etc/origin/node/disabled/
  24. openshift_node_group_cloud_provider: azure
  25. openshift_node_image_prep_packages:
  26. - strace
  27. - tcpdump
  28. etcd_ip: ETCD_IP_REPLACE
  29. - name: add insights-client to package installs when on rhel
  30. set_fact:
  31. openshift_node_image_prep_packages: "{{ openshift_node_image_prep_packages | union(['insights-client']) }}"
  32. when: openshift_deployment_type == 'openshift-enterprise'
  33. - set_fact:
  34. openshift_additional_repos: "{{ openshift_additional_repos + [{'name': 'install_repo', 'baseurl': openshift_azure_install_repo, 'enabled': true, 'gpgcheck': false}] }}"
  35. when: openshift_azure_install_repo is defined and openshift_azure_install_repo
  36. - name: install centos-release-paas-common rpm
  37. yum:
  38. name: centos-release-paas-common
  39. state: present
  40. when: ansible_distribution == "CentOS"
  41. - name: configure yum repositories
  42. import_tasks: tasks/yum_certs.yml
  43. - name: update rpms
  44. import_role:
  45. name: os_update_latest
  46. vars:
  47. os_update_latest_reboot: True
  48. - name: install openshift
  49. import_playbook: ../../openshift-node/private/image_prep.yml
  50. vars:
  51. etcd_image: "{{ etcd_image_dict[openshift_deployment_type] }}"
  52. - hosts: nodes
  53. tasks:
  54. - name: deconfigure yum repositories
  55. import_tasks: tasks/remove_yum.yml
  56. - name: record installed rpms
  57. yum:
  58. list: installed
  59. register: yum
  60. - name: setup data disk
  61. lineinfile:
  62. path: /etc/waagent.conf
  63. regexp: "{{ item.regexp }}"
  64. line: "{{ item.line }}"
  65. with_items:
  66. - { regexp: '^ResourceDisk\.Filesystem=', line: 'ResourceDisk.Filesystem=xfs' }
  67. - { regexp: '^ResourceDisk\.MountPoint=', line: 'ResourceDisk.MountPoint=/var/lib/docker' }
  68. - { regexp: '^ResourceDisk\.MountOptions=', line: 'ResourceDisk.MountOptions=rw,relatime,seclabel,attr2,inode64,grpquota' }
  69. - name: run waagent deprovision
  70. shell: sleep 2 && waagent -deprovision+user -force
  71. async: 1
  72. poll: 0
  73. - hosts: localhost
  74. gather_facts: no
  75. tasks:
  76. - set_fact:
  77. openshift_rpm: "{{ hostvars[groups['nodes'][0]]['yum'].results | selectattr('name', 'match', '^(origin|atomic-openshift)$') | first }}"
  78. - name: create image
  79. import_tasks: tasks/create_image_from_vm.yml
  80. vars:
  81. image_resource_group: "{{ openshift_azure_output_image_ns }}"
  82. image_name: "{{ openshift_azure_output_image_name }}"
  83. image_tags:
  84. base_image: "{{ (input_image.stdout | from_json).name }}"
  85. kernel: "{{ hostvars[groups['nodes'][0]]['ansible_kernel'] }}"
  86. openshift: "{{ openshift_rpm.name }}-{{ openshift_rpm.version }}-{{ openshift_rpm.release }}.{{ openshift_rpm.arch }}"
  87. - name: create blob
  88. import_tasks: tasks/create_blob_from_vm.yml
  89. vars:
  90. image_name: "{{ openshift_azure_output_image_name }}"
  91. when: openshift_azure_storage_account is defined and openshift_azure_storage_account