tests: Do not enable NFD on cbl-mariner

As we're failing to install NFD on CBL Mariner, let's skip the
enablement there, and enable it once we've experimented it better there.

Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com>
This commit is contained in:
Fabiano Fidêncio
2025-10-30 14:04:10 +01:00
committed by Fabiano Fidêncio
parent 1bc873397b
commit 67e38e0f92

View File

@@ -508,6 +508,11 @@ function helm_helper() {
# Enable node-feature-discovery deployment
yq -i ".node-feature-discovery.enabled = true" "${values_yaml}"
# Do not enable on cbl-mariner yet, as the deployment is failing on those
if [[ "${HELM_HOST_OS}" == "cbl-mariner" ]]; then
yq -i ".node-feature-discovery.enabled = false" "${values_yaml}"
fi
if [[ -z "${HELM_IMAGE_REFERENCE}" ]]; then
die "HELM_IMAGE_REFERENCE environment variable cannot be empty."
fi