bootstrap.yml 3.3 KB

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