diff options
Diffstat (limited to 'qa/distros/podman')
-rw-r--r-- | qa/distros/podman/centos_8.stream_container_tools.yaml | 14 | ||||
-rw-r--r-- | qa/distros/podman/rhel_8.4_container_tools_3.0.yaml | 13 | ||||
-rw-r--r-- | qa/distros/podman/rhel_8.4_container_tools_rhel8.yaml | 13 |
3 files changed, 40 insertions, 0 deletions
diff --git a/qa/distros/podman/centos_8.stream_container_tools.yaml b/qa/distros/podman/centos_8.stream_container_tools.yaml new file mode 100644 index 000000000..4a9578e60 --- /dev/null +++ b/qa/distros/podman/centos_8.stream_container_tools.yaml @@ -0,0 +1,14 @@ +os_type: centos +os_version: "8.stream" +overrides: + selinux: + whitelist: + - scontext=system_u:system_r:logrotate_t:s0 + +tasks: +- pexec: + all: + - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup + - sudo dnf -y module reset container-tools + - sudo dnf -y module install container-tools + - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf diff --git a/qa/distros/podman/rhel_8.4_container_tools_3.0.yaml b/qa/distros/podman/rhel_8.4_container_tools_3.0.yaml new file mode 100644 index 000000000..a01eec952 --- /dev/null +++ b/qa/distros/podman/rhel_8.4_container_tools_3.0.yaml @@ -0,0 +1,13 @@ +os_type: rhel +os_version: "8.4" +overrides: + selinux: + whitelist: + - scontext=system_u:system_r:logrotate_t:s0 +tasks: +- pexec: + all: + - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup + - sudo dnf -y module reset container-tools + - sudo dnf -y module install container-tools:3.0 + - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf diff --git a/qa/distros/podman/rhel_8.4_container_tools_rhel8.yaml b/qa/distros/podman/rhel_8.4_container_tools_rhel8.yaml new file mode 100644 index 000000000..fdce9e837 --- /dev/null +++ b/qa/distros/podman/rhel_8.4_container_tools_rhel8.yaml @@ -0,0 +1,13 @@ +os_type: rhel +os_version: "8.4" +overrides: + selinux: + whitelist: + - scontext=system_u:system_r:logrotate_t:s0 +tasks: +- pexec: + all: + - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup + - sudo dnf -y module reset container-tools + - sudo dnf -y module install container-tools:rhel8 + - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf |