container-storage-setup.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - block:
  3. - name: create the docker-storage config file
  4. template:
  5. src: docker-storage-setup-overlayfs.j2
  6. dest: /etc/sysconfig/docker-storage-setup
  7. owner: root
  8. group: root
  9. mode: 0644
  10. when:
  11. - ansible_distribution_version | version_compare('7.4', '>=')
  12. - ansible_distribution == "RedHat"
  13. - block:
  14. - name: create the docker-storage-setup config file
  15. template:
  16. src: docker-storage-setup-dm.j2
  17. dest: /etc/sysconfig/docker-storage-setup
  18. owner: root
  19. group: root
  20. mode: 0644
  21. when:
  22. - ansible_distribution_version | version_compare('7.4', '<')
  23. - ansible_distribution == "RedHat"
  24. - block:
  25. - name: create the docker-storage-setup config file for CentOS
  26. template:
  27. src: docker-storage-setup-dm.j2
  28. dest: /etc/sysconfig/docker-storage-setup
  29. owner: root
  30. group: root
  31. mode: 0644
  32. # TODO(shadower): Find out which CentOS version supports overlayfs2
  33. when:
  34. - ansible_distribution == "CentOS"