tests: Do not enable NFD on s390x

As we're failing on the uninstall, which seems related to a bug on NFD
itself, but I don't have access to a s390x machine to debug, let's skip
the enablement for now and enable it back once we've experimented it
better on s390x.

Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com>
This commit is contained in:
Fabiano Fidêncio
2025-10-30 16:59:21 +01:00
committed by Fabiano Fidêncio
parent 67e38e0f92
commit c75a46d17f

View File

@@ -509,7 +509,8 @@ function helm_helper() {
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
# Do not enable on s390x yet, as the uninstall is failing on those
if [[ "${HELM_HOST_OS}" == "cbl-mariner" ]] || [[ "$(uname -m)" == "s390x" ]]; then
yq -i ".node-feature-discovery.enabled = false" "${values_yaml}"
fi