File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ import (
22
22
"fmt"
23
23
"strings"
24
24
25
+ "knative.dev/eventing/test/rekt/features/featureflags"
26
+
25
27
cloudevents "github.com/cloudevents/sdk-go/v2"
26
28
"github.com/cloudevents/sdk-go/v2/test"
27
29
. "github.com/cloudevents/sdk-go/v2/test"
@@ -556,6 +558,9 @@ func KafkaSourceTLSSink() *feature.Feature {
556
558
event .SetID (uuid .NewString ())
557
559
558
560
f := feature .NewFeature ()
561
+
562
+ f .Prerequisite ("should not run when Istio is enabled" , featureflags .IstioDisabled ())
563
+
559
564
f .Setup ("install kafka topic" , kafkatopic .Install (topic ))
560
565
f .Setup ("topic is ready" , kafkatopic .IsReady (topic ))
561
566
@@ -603,6 +608,9 @@ func KafkaSourceTLSSinkTrustBundle() *feature.Feature {
603
608
event .SetID (uuid .NewString ())
604
609
605
610
f := feature .NewFeature ()
611
+
612
+ f .Prerequisite ("should not run when Istio is enabled" , featureflags .IstioDisabled ())
613
+
606
614
f .Setup ("install kafka topic" , kafkatopic .Install (topic ))
607
615
f .Setup ("topic is ready" , kafkatopic .IsReady (topic ))
608
616
You can’t perform that action at this time.
0 commit comments