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

fix e2e tests: gateway tls listeners must specify tls #10659

Merged
merged 2 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions changelog/v1.19.0-beta13/tls-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
- type: NON_USER_FACING
description: >-
"fix e2e tls route tests that were failing on nightlies using GW API v1.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ spec:
port: 8443
protocol: TLS
hostname: "example.com"
tls:
mode: Passthrough
---
apiVersion: v1
kind: Pod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ spec:
port: 8443
protocol: TLS
hostname: "example.com"
tls:
mode: Passthrough
---
apiVersion: v1
kind: Pod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
gatewayClassName: gloo-gateway
listeners:
- name: listener-6443 # do one listener with multiple hostnames?
- name: listener-6443
protocol: TLS
port: 6443
hostname: "example.com"
Expand All @@ -17,6 +17,9 @@ spec:
- name: listener-8443
protocol: TLS
port: 8443
hostname: "example.com"
tls:
mode: Passthrough
allowedRoutes:
kinds:
- kind: TLSRoute
Expand Down