Skip to content

Commit

Permalink
update release note
Browse files Browse the repository at this point in the history
Signed-off-by: Huabing Zhao <[email protected]>
  • Loading branch information
zhaohuabing committed Dec 10, 2024
1 parent a13a3c3 commit f82c92b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release-notes/current.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ new features: |
bug fixes: |
Fixed BackendTLSPolicy didn't support using port name as the sectionName in the targetRefs.
Fixed reference grant from EnvoyExtensionPolicy to referenced ext-proc backend not respected.
Fixed the Gateway API translator didn't use the TLS configuration from the BackendTLSPolicy to fetch the auth endpoint.
Fixed the Gateway API translator didn't use the TLS configuration from the BackendTLSPolicy when connecting to the OIDC provider's well-known endpoint.
# Enhancements that improve performance.
performance improvements: |
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestE2E(t *testing.T) {
Debug: *flags.ShowDebug,
CleanupBaseResources: *flags.CleanupBaseResources,
ManifestFS: []fs.FS{Manifests},
RunTest: tests.OIDCTest.ShortName,
RunTest: *flags.RunTest,
// SupportedFeatures cannot be empty, so we set it to SupportGateway
// All e2e tests should leave Features empty.
SupportedFeatures: sets.New[features.FeatureName](features.SupportGateway),
Expand Down
5 changes: 4 additions & 1 deletion tools/make/kube.mk
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,11 @@ run-e2e: e2e-prepare ## Run e2e tests
@$(LOG_TARGET)
ifeq ($(E2E_RUN_TEST),)
go test $(E2E_TEST_ARGS) ./test/e2e --gateway-class=envoy-gateway --debug=true --cleanup-base-resources=false
go test $(E2E_TEST_ARGS) ./test/e2e/merge_gateways --gateway-class=merge-gateways --debug=true --cleanup-base-resources=false
go test $(E2E_TEST_ARGS) ./test/e2e/multiple_gc --debug=true --cleanup-base-resources=true
LAST_VERSION_TAG=$(shell cat VERSION) go test $(E2E_TEST_ARGS) ./test/e2e/upgrade --gateway-class=upgrade --debug=true --cleanup-base-resources=$(E2E_CLEANUP)
else
go test $(E2E_TEST_ARGS) ./test/e2e --gateway-class=envoy-gateway --debug=true --cleanup-base-resources=false \
go test $(E2E_TEST_ARGS) ./test/e2e --gateway-class=envoy-gateway --debug=true --cleanup-base-resources=$(E2E_CLEANUP) \
--run-test $(E2E_RUN_TEST)
endif

Expand Down

0 comments on commit f82c92b

Please sign in to comment.