You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
387 B

  1. ---
  2. - name: Create systemd-resolved drop-in directory
  3. file:
  4. state: directory
  5. name: /etc/systemd/resolved.conf.d/
  6. mode: "0755"
  7. - name: Write Kubespray DNS settings to systemd-resolved
  8. template:
  9. src: resolved.conf.j2
  10. dest: /etc/systemd/resolved.conf.d/kubespray.conf
  11. owner: root
  12. group: root
  13. mode: "0644"
  14. notify: Preinstall | Restart systemd-resolved