Skip to content

Commit

Permalink
restrict dual-stack-without-ipv4 e2e test to pdx only (#3700)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviassss committed May 16, 2024
1 parent d3bbf91 commit 9b4999b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion test/e2e/ingress/vanilla_ingress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,12 @@ var _ = Describe("vanilla ingress tests", func() {
}

if tf.Options.IPFamily == "IPv6" {
annotation["alb.ingress.kubernetes.io/ip-address-type"] = "dualstack-without-public-ipv4"
// TODO: annotate to "dualstack-without-public-ipv4" for all regions once it's GA
if tf.Options.AWSRegion == "us-west-2" {
annotation["alb.ingress.kubernetes.io/ip-address-type"] = "dualstack-without-public-ipv4"
} else {
annotation["alb.ingress.kubernetes.io/ip-address-type"] = "dualstack"
}
}

ing := ingBuilder.
Expand Down
2 changes: 1 addition & 1 deletion test/framework/utils/poll.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ const (
// IngressReconcileTimeout is the timeout we expected the controller finishes reconcile for Ingresses.
IngressReconcileTimeout = 1 * time.Minute
// IngressDNSAvailableWaitTimeout is the timeout we expect the DNS records of ALB to be propagated.
IngressDNSAvailableWaitTimeout = 5 * time.Minute
IngressDNSAvailableWaitTimeout = 10 * time.Minute
)

0 comments on commit 9b4999b

Please sign in to comment.