bootstrap.yml 3.3 KB

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