Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gateway API: remove gateway controller name config option #6145

Merged
merged 7 commits into from
Feb 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update E2E
Signed-off-by: Steve Kriss <stephen.kriss@gmail.com>
  • Loading branch information
skriss committed Feb 13, 2024
commit 1fd6978095a4c0b99ee73f6536967d1e73f69760
4 changes: 2 additions & 2 deletions test/e2e/gateway/gateway_test.go
Original file line number Diff line number Diff line change
@@ -77,15 +77,15 @@ var _ = Describe("Gateway API", func() {
gateway.Namespace = namespace
// Update contour config to point to specified gateway.
contourConfig.GatewayConfig = &config.GatewayParameters{
GatewayRef: &config.NamespacedName{
GatewayRef: config.NamespacedName{
Namespace: gateway.Namespace,
Name: gateway.Name,
},
}

// Update contour configuration to point to specified gateway.
contourConfiguration.Spec.Gateway = &contour_v1alpha1.GatewayConfig{
GatewayRef: &contour_v1alpha1.NamespacedName{
GatewayRef: contour_v1alpha1.NamespacedName{
Namespace: gateway.Namespace,
Name: gateway.Name,
},
Loading