diff --git a/test/image-blueprints-bootc/layer3-periodic/group3/cos9-bootc-source-fips.containerfile b/test/image-blueprints-bootc/layer3-periodic/group3/cos9-bootc-source-fips.containerfile deleted file mode 100644 index 06158491df..0000000000 --- a/test/image-blueprints-bootc/layer3-periodic/group3/cos9-bootc-source-fips.containerfile +++ /dev/null @@ -1,13 +0,0 @@ -FROM localhost/cos9-bootc-source:latest - -# Add fips=1 kernel argument -# See https://containers.github.io/bootc/building/kernel-arguments.html -RUN cat > /usr/lib/bootc/kargs.d/01-fips.toml <<'EOF' -kargs = ["fips=1"] -match-architectures = ["x86_64"] -EOF - -# Enable the FIPS crypto policy -RUN dnf install -y crypto-policies-scripts && \ - update-crypto-policies --no-reload --set FIPS && \ - dnf clean all diff --git a/test/scenarios-bootc/periodics/cos9-src@fips.sh b/test/scenarios-bootc/periodics/cos9-src@fips.sh deleted file mode 100644 index ac5bb41add..0000000000 --- a/test/scenarios-bootc/periodics/cos9-src@fips.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -# Sourced from scenario.sh and uses functions defined there. - -check_platform() { - if [[ "${UNAME_M}" =~ aarch64 ]] ; then - record_junit "setup" "scenario_create_vms" "SKIPPED" - exit 0 - fi -} - -scenario_create_vms() { - check_platform - - prepare_kickstart host1 kickstart-bootc.ks.template cos9-bootc-source-fips true - launch_vm --boot_blueprint centos9-bootc --fips -} - -scenario_remove_vms() { - check_platform - - remove_vm host1 -} - -scenario_run_tests() { - check_platform - - run_tests host1 suites/fips/ -}