bootstrap.yml 3.2 KB

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