Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BCI: LTSS containers testing on LTSS hosts only #21099

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/containers/bci_prepare.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ use containers::common;
use testapi;
use serial_terminal 'select_serial_terminal';


sub packages_to_install {
my ($version, $sp, $host_distri) = @_;
my $arch = get_required_var('ARCH');
Expand Down Expand Up @@ -139,6 +138,11 @@ sub run {

return if (get_var('HELM_CONFIG') && !($host_distri == "sles" && $version == 15 && $sp >= 3));

# Ensure LTSS subscription is active when testing LTSS containers.
my $ltss_command = q(SUSEConnect -s | jq -Mr '.[] | select(.identifier == "SLES-LTSS") | .subscription_status');
validate_script_output($ltss_command, qr/ACTIVE/, fail_message => "Host requires LTSS subscription for LTSS container")
if (get_var('CONTAINER_IMAGE_TO_TEST') =~ /ltss/i);

# For BCI tests using podman, buildah package is also needed
install_buildah_when_needed($host_distri) if ($engines =~ /podman/);

Expand Down