bootstrap.yml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. ---
  2. - name: include package installs
  3. import_tasks: install_rpms.yml
  4. when: not (openshift_is_atomic | default(False) | bool)
  5. - name: create the directory for node
  6. file:
  7. state: directory
  8. path: "/etc/systemd/system/{{ openshift_service_type }}-node.service.d"
  9. when: '"cloud-init" in r_openshift_node_image_prep_packages'
  10. - name: laydown systemd override
  11. copy:
  12. dest: "/etc/systemd/system/{{ openshift_service_type }}-node.service.d/override.conf"
  13. content: |
  14. [Unit]
  15. After=cloud-init.service
  16. when: '"cloud-init" in r_openshift_node_image_prep_packages'
  17. - name: update the sysconfig to have necessary variables
  18. lineinfile:
  19. dest: "/etc/sysconfig/{{ openshift_service_type }}-node"
  20. line: "{{ item.line | default(omit) }}"
  21. regexp: "{{ item.regexp }}"
  22. state: "{{ item.state | default('present') }}"
  23. with_items:
  24. # add the kubeconfig
  25. - line: "KUBECONFIG={{ openshift_node_config_dir }}/bootstrap.kubeconfig"
  26. regexp: "^KUBECONFIG=.*"
  27. - name: include aws sysconfig credentials
  28. import_tasks: aws.yml
  29. when: not (openshift_node_use_instance_profiles | default(False))
  30. - name: "disable {{ openshift_service_type }}-node service"
  31. systemd:
  32. name: "{{ item }}"
  33. enabled: no
  34. with_items:
  35. - "{{ openshift_service_type }}-node.service"
  36. - name: Check for RPM generated config marker file .config_managed
  37. stat:
  38. path: /etc/origin/.config_managed
  39. get_checksum: false
  40. get_attributes: false
  41. get_mime: false
  42. register: rpmgenerated_config
  43. - name: create directories for bootstrapping
  44. file:
  45. state: directory
  46. dest: "{{ item }}"
  47. with_items:
  48. - /root/openshift_bootstrap
  49. - /var/lib/origin/openshift.local.config
  50. - /var/lib/origin/openshift.local.config/node
  51. - "/etc/docker/certs.d/docker-registry.default.svc:5000"
  52. - name: laydown the bootstrap.yml file for on boot configuration
  53. template:
  54. src: bootstrap.yml.j2
  55. dest: /root/openshift_bootstrap/bootstrap.yml
  56. - name: Create a symlink to the node client CA for the docker registry
  57. file:
  58. src: "{{ openshift_node_config_dir }}/client-ca.crt"
  59. dest: "/etc/docker/certs.d/docker-registry.default.svc:5000/node-client-ca.crt"
  60. state: link
  61. force: yes
  62. follow: no
  63. - when: rpmgenerated_config.stat.exists
  64. block:
  65. - name: Remove RPM generated config files if present
  66. file:
  67. path: "/etc/origin/{{ item }}"
  68. state: absent
  69. with_items:
  70. - master
  71. - .config_managed
  72. # with_fileglob doesn't work correctly due to a few issues.
  73. # Could change this to fileglob when it gets fixed.
  74. - name: find all files in /etc/origin/node so we can remove them
  75. find:
  76. path: /etc/origin/node/
  77. register: find_results
  78. - name: Remove everything except the resolv.conf required for node
  79. file:
  80. path: "{{ item.path }}"
  81. state: absent
  82. when:
  83. - "'resolv.conf' not in item.path"
  84. - "'node-dnsmasq.conf' not in item.path"
  85. with_items: "{{ find_results.files }}"