bootstrap.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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: create directories for bootstrapping
  37. file:
  38. state: directory
  39. dest: "{{ item }}"
  40. with_items:
  41. - /root/openshift_bootstrap
  42. - /var/lib/origin/openshift.local.config
  43. - /var/lib/origin/openshift.local.config/node
  44. - "/etc/docker/certs.d/docker-registry.default.svc:5000"
  45. - name: laydown the bootstrap.yml file for on boot configuration
  46. template:
  47. src: bootstrap.yml.j2
  48. dest: /root/openshift_bootstrap/bootstrap.yml
  49. - name: Create a symlink to the node client CA for the docker registry
  50. file:
  51. src: "{{ openshift_node_config_dir }}/client-ca.crt"
  52. dest: "/etc/docker/certs.d/docker-registry.default.svc:5000/node-client-ca.crt"
  53. state: link
  54. force: yes
  55. follow: no