Skip to content

Commit

Permalink
Fixup cri-o metacopy mount options (kubernetes-sigs#7287)
Browse files Browse the repository at this point in the history
Ubuntu 18.04 crio package ships with 'mountopt = "nodev,metacopy=on"'
even if GA kernel is 4.15 (HWE Kernel can be more recent)

Fedora package ships without metacopy=on

Signed-off-by: Etienne Champetier <[email protected]>
(cherry picked from commit 5c04bdd)
  • Loading branch information
champtar committed Feb 17, 2021
1 parent 57ad76b commit 5137d8d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions roles/container-engine/cri-o/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,13 @@
owner: root
mode: 0755

- name: Remove metacopy mount options for older kernels
# metacopy=on is available since 4.19 and was backported to RHEL 4.18 kernel
- name: Set metacopy mount options correctly
ini_file:
dest: /etc/containers/storage.conf
section: storage.options.overlay
option: mountopt
value: "\"nodev\""
when:
- ansible_distribution == "CentOS"
- ansible_distribution_major_version == "7"
value: '{{ ''"nodev"'' if ansible_kernel is version_compare(("4.18" if ansible_os_family == "RedHat" else "4.19"), "<") else ''"nodev,metacopy=on"'' }}'

- name: Create directory registries configs
file:
Expand Down

0 comments on commit 5137d8d

Please sign in to comment.