From 006640422c1fc9a8268be518f4b5812b4a1adf6b Mon Sep 17 00:00:00 2001 From: Christoph Jerolimov Date: Sat, 13 Dec 2025 13:06:38 +0100 Subject: [PATCH 1/2] chore(e2e-tests): test e2e jobs Signed-off-by: Christoph Jerolimov --- .ibm/pipelines/openshift-ci-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ibm/pipelines/openshift-ci-tests.sh b/.ibm/pipelines/openshift-ci-tests.sh index 81340c2f3a..84ea6a53a2 100755 --- a/.ibm/pipelines/openshift-ci-tests.sh +++ b/.ibm/pipelines/openshift-ci-tests.sh @@ -43,7 +43,7 @@ source "${DIR}/utils.sh" main() { log::info "Log file: ${LOGFILE}" - log::info "JOB_NAME : $JOB_NAME" + log::info "JOB_NAME: $JOB_NAME" CHART_VERSION=$(get_chart_version "$CHART_MAJOR_VERSION") export CHART_VERSION From 7b3332c7a978464d2d893c1b7bc374910e9f4d8f Mon Sep 17 00:00:00 2001 From: Christoph Jerolimov Date: Sat, 13 Dec 2025 13:10:13 +0100 Subject: [PATCH 2/2] fix(e2e-tests): comment out unknown command/function Signed-off-by: Christoph Jerolimov --- .ibm/pipelines/jobs/eks-helm.sh | 4 ++-- .ibm/pipelines/jobs/eks-operator.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.ibm/pipelines/jobs/eks-helm.sh b/.ibm/pipelines/jobs/eks-helm.sh index d6923f9092..46df82b386 100644 --- a/.ibm/pipelines/jobs/eks-helm.sh +++ b/.ibm/pipelines/jobs/eks-helm.sh @@ -17,10 +17,10 @@ handle_eks_helm() { log::info "Starting EKS Helm deployment" # Verify EKS cluster connectivity - aws_eks_verify_cluster + # FIXME(gustavolira): restore/reenable this function?! aws_eks_verify_cluster # Get cluster information - aws_eks_get_cluster_info + # FIXME(gustavolira): restore/reenable this function?! aws_eks_get_cluster_info export NAME_SPACE="${NAME_SPACE:-showcase-k8s-ci-nightly}" export NAME_SPACE_RBAC="${NAME_SPACE_RBAC:-showcase-rbac-k8s-ci-nightly}" diff --git a/.ibm/pipelines/jobs/eks-operator.sh b/.ibm/pipelines/jobs/eks-operator.sh index 96f079abfb..d7b658d29a 100644 --- a/.ibm/pipelines/jobs/eks-operator.sh +++ b/.ibm/pipelines/jobs/eks-operator.sh @@ -17,10 +17,10 @@ handle_eks_operator() { log::info "Starting EKS Operator deployment" # Verify EKS cluster connectivity - aws_eks_verify_cluster + # FIXME(gustavolira): restore/reenable this function?! aws_eks_verify_cluster # Get cluster information - aws_eks_get_cluster_info + # FIXME(gustavolira): restore/reenable this function?! aws_eks_get_cluster_info export NAME_SPACE="${NAME_SPACE:-showcase-k8s-ci-nightly}" export NAME_SPACE_RBAC="${NAME_SPACE_RBAC:-showcase-rbac-k8s-ci-nightly}"