From 516fe391640a1edfd7ea40f5dbc7be4b58e98091 Mon Sep 17 00:00:00 2001 From: Gianluca Mardente Date: Sun, 5 Apr 2026 20:36:13 +0200 Subject: [PATCH] (chore) Set continue on error and conflict on test This is to repro exactly the bug this test was added for --- test/fv/helm_failure_message_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/fv/helm_failure_message_test.go b/test/fv/helm_failure_message_test.go index 1251eb74..bc7dfc9a 100644 --- a/test/fv/helm_failure_message_test.go +++ b/test/fv/helm_failure_message_test.go @@ -68,6 +68,8 @@ var _ = Describe("Helm with conflicts", func() { err := retry.RetryOnConflict(retry.DefaultRetry, func() error { Expect(k8sClient.Get(context.TODO(), types.NamespacedName{Name: clusterProfile.Name}, currentClusterProfile)).To(Succeed()) + currentClusterProfile.Spec.ContinueOnError = true + currentClusterProfile.Spec.ContinueOnConflict = true currentClusterProfile.Spec.HelmCharts = []configv1beta1.HelmChart{ { RepositoryURL: "oci://ghcr.io/k0rdent/catalog/charts",