forked from k8sgateway/k8sgateway
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e/features/tracing: reduce flakiness of entire suite, capture techn…
…ical debt (#10409)
- Loading branch information
1 parent
3bb702e
commit 5b41985
Showing
6 changed files
with
110 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
changelog: | ||
- type: NON_USER_FACING | ||
issueLink: https://github.com/solo-io/gloo/issues/10365 | ||
resolvesIssue: false | ||
description: >- | ||
Remove the chance of a flake occurring due to an UpstreamNotFound error | ||
- type: NON_USER_FACING | ||
issueLink: https://github.com/k8sgateway/k8sgateway/issues/10327 | ||
resolvesIssue: false | ||
description: >- | ||
Remove the chance of a flake occurring due to an UpstreamNotFound error | ||
- type: NON_USER_FACING | ||
issueLink: https://github.com/k8sgateway/k8sgateway/issues/10293 | ||
resolvesIssue: false | ||
description: >- | ||
Mask a product UX issue by enabling some retry logic in a test. The attached | ||
issue should resolve the bad UX -and- remove the retry logic introduced here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
test/kubernetes/e2e/features/tracing/testdata/gw-proxy-tracing-service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: gateway-proxy-tracing | ||
labels: | ||
app.kubernetes.io/name: gateway-proxy-tracing-service | ||
spec: | ||
type: LoadBalancer | ||
ports: | ||
# This service exposes the Port 18080, used by the Gateway defined in ./gateway.yaml | ||
- name: gateway-proxy-tracing | ||
port: 18080 | ||
protocol: TCP | ||
targetPort: 18080 | ||
# This selector is meant to match the Selector of the deployed gateway-proxy Service | ||
# We intend to route traffic to the gateway-proxy pod(s) that are deployed at install time | ||
selector: | ||
gateway-proxy-id: gateway-proxy | ||
gateway-proxy: live | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters