config_changes.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. - name: Ensure the node static pod directory exists
  3. file:
  4. path: "{{ openshift.common.config_base }}/node/pods"
  5. state: directory
  6. mode: 0755
  7. - name: Ensure docker-registry directory exists
  8. file:
  9. state: directory
  10. path: "/etc/docker/certs.d/docker-registry.default.svc:5000"
  11. - name: Update the docker-registry CA symlink
  12. file:
  13. src: "{{ openshift_node_config_dir }}/client-ca.crt"
  14. dest: "/etc/docker/certs.d/docker-registry.default.svc:5000/node-client-ca.crt"
  15. state: link
  16. force: yes
  17. follow: no
  18. - name: Reset selinux context
  19. command: restorecon -RF {{ openshift_node_data_dir }}/openshift.local.volumes
  20. when:
  21. - ansible_selinux is defined
  22. - ansible_selinux.status == 'enabled'
  23. - name: Update systemd units
  24. import_tasks: ../systemd_units.yml
  25. # Get stat of /etc/crio/crio.conf
  26. - stat: path=/etc/crio/crio.conf
  27. register: crio_conf
  28. # Update the cri-o pause image to use latest version after an upgrade
  29. # if cri-o is the container runtime i.e /etc/crio/crio.conf exists
  30. - name: Update cri-o pause image
  31. lineinfile:
  32. dest: /etc/crio/crio.conf
  33. line: pause_image = "{{ openshift_crio_pause_image }}"
  34. regexp: '^pause_image ='
  35. when: crio_conf.stat.exists == True
  36. # NOTE: This is needed to make sure we are using the correct set
  37. # of systemd unit files. The RPMs lay down defaults but
  38. # the install/upgrade may override them in /etc/systemd/system/.
  39. # NOTE: We don't use the systemd module as some versions of the module
  40. # require a service to be part of the call.
  41. - name: Reload systemd units
  42. command: systemctl daemon-reload