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