File tree Expand file tree Collapse file tree 3 files changed +0
-8
lines changed Expand file tree Collapse file tree 3 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 14
14
// ExplicitRegexPathVersionCutoff is the lowest Kong version requiring the explicit "~" prefixes in regular expression paths.
15
15
ExplicitRegexPathVersionCutoff = semver.Version {Major : 3 , Minor : 0 }
16
16
17
- // PluginOrderingVersionCutoff is the Kong version prior to the addition of plugin ordering.
18
- PluginOrderingVersionCutoff = semver.Version {Major : 3 }
19
-
20
17
// ConsumerGroupsVersionCutoff is the Kong version prior to the addition of Consumer Groups as first class citizens.
21
18
ConsumerGroupsVersionCutoff = semver.Version {Major : 3 , Minor : 4 }
22
19
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ import (
20
20
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
21
21
22
22
"github.com/kong/kubernetes-ingress-controller/v2/internal/annotations"
23
- "github.com/kong/kubernetes-ingress-controller/v2/internal/versions"
24
23
kongv1 "github.com/kong/kubernetes-ingress-controller/v2/pkg/apis/configuration/v1"
25
24
"github.com/kong/kubernetes-ingress-controller/v2/pkg/clientset"
26
25
"github.com/kong/kubernetes-ingress-controller/v2/test"
@@ -160,7 +159,6 @@ func TestPluginEssentials(t *testing.T) {
160
159
func TestPluginOrdering (t * testing.T ) {
161
160
t .Parallel ()
162
161
163
- RunWhenKongVersion (t , fmt .Sprintf (">=%s" , versions .PluginOrderingVersionCutoff ))
164
162
RunWhenKongEnterprise (t )
165
163
166
164
ctx := context .Background ()
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import (
21
21
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
22
22
23
23
"github.com/kong/kubernetes-ingress-controller/v2/internal/annotations"
24
- "github.com/kong/kubernetes-ingress-controller/v2/internal/versions"
25
24
kongv1beta1 "github.com/kong/kubernetes-ingress-controller/v2/pkg/apis/configuration/v1beta1"
26
25
"github.com/kong/kubernetes-ingress-controller/v2/pkg/clientset"
27
26
"github.com/kong/kubernetes-ingress-controller/v2/test"
@@ -310,8 +309,6 @@ func TestTCPIngressTLSPassthrough(t *testing.T) {
310
309
// after determining why the gateway is discarding these requests and applying any necessary fixes.
311
310
// RunWhenKongExpressionRouter(t)
312
311
313
- RunWhenKongVersion (t , fmt .Sprintf (">=%s" , versions .TLSPassthroughCutoff ))
314
-
315
312
t .Log ("locking Gateway TLS ports" )
316
313
tlsMutex .Lock ()
317
314
t .Cleanup (func () {
You can’t perform that action at this time.
0 commit comments