config_changes.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. ---
  2. - name: Update oreg value
  3. yedit:
  4. src: "{{ openshift.common.config_base }}/node/node-config.yaml"
  5. key: 'imageConfig.format'
  6. value: "{{ oreg_url | default(oreg_url_node) }}"
  7. when: oreg_url is defined or oreg_url_node is defined
  8. - name: Ensure the node static pod directory exists
  9. file:
  10. path: "{{ openshift.common.config_base }}/node/pods"
  11. state: directory
  12. mode: 0755
  13. - name: Ensure docker-registry directory exists
  14. file:
  15. state: directory
  16. path: "/etc/docker/certs.d/docker-registry.default.svc:5000"
  17. - name: Update the docker-registry CA symlink
  18. file:
  19. src: "{{ openshift_node_config_dir }}/client-ca.crt"
  20. dest: "/etc/docker/certs.d/docker-registry.default.svc:5000/node-client-ca.crt"
  21. state: link
  22. force: yes
  23. follow: no
  24. - name: Update node-config for static pods
  25. yedit:
  26. src: "{{ openshift.common.config_base }}/node/node-config.yaml"
  27. edits:
  28. - key: kubeletArguments.pod-manifest-path
  29. value:
  30. - "{{ openshift.common.config_base }}/node/pods"
  31. # https://bugzilla.redhat.com/show_bug.cgi?id=1518912
  32. # - name: Clean up IPAM data
  33. # file:
  34. # path: "/var/lib/cni/networks/openshift-sdn/"
  35. # state: absent
  36. - name: Uninstall openvswitch
  37. package:
  38. name: openvswitch
  39. state: absent
  40. when: not openshift_is_atomic | bool
  41. - name: Remove old service information
  42. file:
  43. path: "{{ item }}"
  44. state: absent
  45. with_items:
  46. - /etc/systemd/system/docker.service.d/docker-sdn-ovs.conf
  47. - /etc/systemd/system/atomic-openshift-node-dep.service
  48. - /etc/systemd/system/origin-node-dep.service
  49. - /etc/systemd/system/openvswitch.service
  50. - name: Move existing credentials and configuration into bootstrap configuration
  51. import_tasks: bootstrap_changes.yml
  52. - name: Reset selinux context
  53. command: restorecon -RF {{ openshift_node_data_dir }}/openshift.local.volumes
  54. when:
  55. - ansible_selinux is defined
  56. - ansible_selinux.status == 'enabled'
  57. - name: Update systemd units
  58. import_tasks: ../systemd_units.yml
  59. # NOTE: This is needed to make sure we are using the correct set
  60. # of systemd unit files. The RPMs lay down defaults but
  61. # the install/upgrade may override them in /etc/systemd/system/.
  62. # NOTE: We don't use the systemd module as some versions of the module
  63. # require a service to be part of the call.
  64. - name: Reload systemd units
  65. command: systemctl daemon-reload