config_changes.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. - name: Update systemd units
  3. include_tasks: ../systemd_units.yml
  4. when: openshift_is_containerized | bool
  5. - name: Update oreg value
  6. yedit:
  7. src: "{{ openshift.common.config_base }}/node/node-config.yaml"
  8. key: 'imageConfig.format'
  9. value: "{{ oreg_url | default(oreg_url_node) }}"
  10. when: oreg_url is defined or oreg_url_node is defined
  11. - name: Remove obsolete docker-sdn-ovs.conf
  12. file:
  13. path: "/etc/systemd/system/docker.service.d/docker-sdn-ovs.conf"
  14. state: absent
  15. # https://bugzilla.redhat.com/show_bug.cgi?id=1513054
  16. - name: Clean up dockershim data
  17. file:
  18. path: "/var/lib/dockershim/sandbox/"
  19. state: absent
  20. # https://bugzilla.redhat.com/show_bug.cgi?id=1518912
  21. - name: Clean up IPAM data
  22. file:
  23. path: "/var/lib/cni/networks/openshift-sdn/"
  24. state: absent
  25. # https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
  26. # swapoff is a custom module in lib_utils that comments out swap entries in
  27. # /etc/fstab and runs swapoff -a, if necessary.
  28. - name: Disable swap
  29. swapoff: {}
  30. when: openshift_disable_swap | default(true) | bool
  31. - name: Apply 3.6 dns config changes
  32. yedit:
  33. src: /etc/origin/node/node-config.yaml
  34. key: "{{ item.key }}"
  35. value: "{{ item.value }}"
  36. with_items:
  37. - key: "dnsBindAddress"
  38. value: "127.0.0.1:53"
  39. - key: "dnsRecursiveResolvConf"
  40. value: "/etc/origin/node/resolv.conf"
  41. - name: Install Node service file
  42. template:
  43. dest: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
  44. src: "node.service.j2"
  45. register: l_node_unit
  46. when: not openshift_is_containerized | bool
  47. - name: Reset selinux context
  48. command: restorecon -RF {{ openshift_node_data_dir }}/openshift.local.volumes
  49. when:
  50. - ansible_selinux is defined
  51. - ansible_selinux.status == 'enabled'
  52. # NOTE: This is needed to make sure we are using the correct set
  53. # of systemd unit files. The RPMs lay down defaults but
  54. # the install/upgrade may override them in /etc/systemd/system/.
  55. # NOTE: We don't use the systemd module as some versions of the module
  56. # require a service to be part of the call.
  57. - name: Reload systemd units
  58. command: systemctl daemon-reload