config_changes.yml 2.2 KB

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