bootstrap.yml 3.3 KB

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