We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e4075de + f70fd81 commit ff540d0Copy full SHA for ff540d0
tests/containers/bci_prepare.pm
@@ -114,10 +114,12 @@ sub run {
114
# For BCI tests using podman, buildah package is also needed
115
install_buildah_when_needed($host_distri) if ($engines =~ /podman/);
116
117
- if (get_var('BCI_PREPARE') && is_sle("15-SP7+", get_var('HOST_VERSION', get_required_var('VERSION')))) {
118
- install_k3s();
119
- systemctl 'disable --now firewalld';
120
- install_helm();
+ if ($host_distri =~ /opensuse|sles/) {
+ if (get_var('BCI_PREPARE') && is_sle("15-SP7+", get_var('HOST_VERSION', get_required_var('VERSION')))) {
+ install_k3s();
+ systemctl 'disable --now firewalld';
121
+ install_helm();
122
+ }
123
}
124
125
0 commit comments