Skip to content
Snippets Groups Projects
Unverified Commit 9f052702 authored by Cristian Calin's avatar Cristian Calin Committed by GitHub
Browse files

containerd: add support for suse distributions (#8261)

parent b38382a6
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,14 @@ platforms: ...@@ -31,6 +31,14 @@ platforms:
- kube_control_plane - kube_control_plane
- kube_node - kube_node
- k8s_cluster - k8s_cluster
- name: opensuse
box: opensuse/Leap-15.2.x86_64
cpus: 1
memory: 1024
groups:
- kube_control_plane
- kube_node
- k8s_cluster
provisioner: provisioner:
name: ansible name: ansible
env: env:
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
fail: fail:
msg: "{{ ansible_distribution }} is not supported by containerd." msg: "{{ ansible_distribution }} is not supported by containerd."
when: when:
- not ansible_distribution in ["CentOS", "OracleLinux", "RedHat", "Ubuntu", "Debian", "Fedora", "AlmaLinux", "Rocky", "Amazon", "Flatcar", "Flatcar Container Linux by Kinvolk"] - ansible_distribution not in ["CentOS", "OracleLinux", "RedHat", "Ubuntu", "Debian", "Fedora", "AlmaLinux", "Rocky", "Amazon", "Flatcar", "Flatcar Container Linux by Kinvolk", "Suse", "openSUSE Leap", "openSUSE Tumbleweed"]
- name: disable unified_cgroup_hierarchy in Fedora 31+ - name: disable unified_cgroup_hierarchy in Fedora 31+
command: grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0" command: grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment