@@ -72,7 +72,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
7272 },
7373 }
7474 auxiliaryStack = newAuxiliaryResourceStack (ctx , tf , tgSpec , true )
75- httpr := buildHTTPRoute ([]string {}, []gwv1.HTTPRouteRule {}, & gwListeners [0 ].Name )
75+ httpr := BuildHTTPRoute ([]string {}, []gwv1.HTTPRouteRule {}, & gwListeners [0 ].Name )
7676 By ("deploying stack" , func () {
7777 err := stack .DeployHTTP (ctx , auxiliaryStack , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
7878 Expect (err ).NotTo (HaveOccurred ())
@@ -217,7 +217,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
217217 },
218218 }
219219
220- httpr := buildHTTPRoute ([]string {}, httpRouteRuleWithMatchesAndTargetGroupWeights , nil )
220+ httpr := BuildHTTPRoute ([]string {}, httpRouteRuleWithMatchesAndTargetGroupWeights , nil )
221221 By ("deploying stack" , func () {
222222 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
223223 Expect (err ).NotTo (HaveOccurred ())
@@ -432,7 +432,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
432432 },
433433 }
434434
435- httpr := buildHTTPRoute ([]string {"test.com" }, []gwv1.HTTPRouteRule {}, nil )
435+ httpr := BuildHTTPRoute ([]string {"test.com" }, []gwv1.HTTPRouteRule {}, nil )
436436
437437 By ("deploying stack" , func () {
438438 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
@@ -466,7 +466,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
466466 Protocol : gwv1 .HTTPProtocolType ,
467467 },
468468 }
469- httpr := buildHTTPRoute ([]string {}, httpRouteRuleWithMatchesAndFilters , nil )
469+ httpr := BuildHTTPRoute ([]string {}, httpRouteRuleWithMatchesAndFilters , nil )
470470
471471 By ("deploying stack" , func () {
472472 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
@@ -545,7 +545,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
545545 },
546546 }
547547
548- httpr := buildHTTPRoute ([]string {}, httpRouteRuleWithMultiMatchesInSingleRule , nil )
548+ httpr := BuildHTTPRoute ([]string {}, httpRouteRuleWithMultiMatchesInSingleRule , nil )
549549
550550 By ("deploying stack" , func () {
551551 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
@@ -729,7 +729,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
729729 }
730730
731731 lrcSpec := elbv2gw.ListenerRuleConfigurationSpec {}
732- httpr := buildHTTPRoute ([]string {}, []gwv1.HTTPRouteRule {}, & gwListeners [0 ].Name )
732+ httpr := BuildHTTPRoute ([]string {}, []gwv1.HTTPRouteRule {}, & gwListeners [0 ].Name )
733733 httpr .Spec .Rules [0 ].Filters = []gwv1.HTTPRouteFilter {
734734 {
735735 Type : gwv1 .HTTPRouteFilterURLRewrite ,
@@ -877,7 +877,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
877877 },
878878 }
879879
880- httpr := buildHTTPRoute ([]string {testHostname }, []gwv1.HTTPRouteRule {}, nil )
880+ httpr := BuildHTTPRoute ([]string {testHostname }, []gwv1.HTTPRouteRule {}, nil )
881881
882882 By ("deploying stack" , func () {
883883 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
@@ -989,7 +989,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
989989 },
990990 }
991991
992- httpr := buildHTTPRoute ([]string {testHostname }, []gwv1.HTTPRouteRule {}, nil )
992+ httpr := BuildHTTPRoute ([]string {testHostname }, []gwv1.HTTPRouteRule {}, nil )
993993
994994 By ("deploying stack" , func () {
995995 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
@@ -1141,7 +1141,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
11411141 },
11421142 },
11431143 }
1144- httpr := buildHTTPRoute ([]string {testHostname }, httpRouteRules , nil )
1144+ httpr := BuildHTTPRoute ([]string {testHostname }, httpRouteRules , nil )
11451145
11461146 By ("deploying stack" , func () {
11471147 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , false )
@@ -1351,7 +1351,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
13511351 },
13521352 },
13531353 }
1354- httpr := buildHTTPRoute ([]string {testHostname }, httpRouteRules , nil )
1354+ httpr := BuildHTTPRoute ([]string {testHostname }, httpRouteRules , nil )
13551355
13561356 By ("deploying stack" , func () {
13571357 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , oidcSecret , false )
@@ -1520,7 +1520,7 @@ var _ = Describe("test k8s alb gateway using ip targets reconciled by the aws lo
15201520 },
15211521 }
15221522
1523- httpr := buildHTTPRoute ([]string {}, []gwv1.HTTPRouteRule {}, nil )
1523+ httpr := BuildHTTPRoute ([]string {}, []gwv1.HTTPRouteRule {}, nil )
15241524
15251525 By ("deploying stack" , func () {
15261526 err := stack .DeployHTTP (ctx , nil , tf , gwListeners , []* gwv1.HTTPRoute {httpr }, lbcSpec , tgSpec , lrcSpec , nil , true )
0 commit comments