forked from kgateway-dev/kgateway
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into GG-CRD-category
- Loading branch information
Showing
5 changed files
with
103 additions
and
54 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
changelog/v1.18.0-beta35/remove-hardcoded-namespace-in-tracing-test-master.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,6 @@ | ||
changelog: | ||
- type: NON_USER_FACING | ||
issueLink: https://github.com/solo-io/solo-projects/issues/7223 | ||
resolvesIssue: true | ||
description: >- | ||
Remove hard-coded namespaces from the tracing tests. This issue is causing tests to pass in OSS gloo, but fail in solo-projects. |
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
42 changes: 42 additions & 0 deletions
42
test/kubernetes/e2e/features/tracing/testdata/gateway.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,42 @@ | ||
# Avoid using the default gateway because we don't want to destroy it when this | ||
# test is over - that will break other tests that depend on the default gateway | ||
# existing. | ||
apiVersion: gateway.solo.io/v1 | ||
kind: Gateway | ||
metadata: | ||
labels: | ||
app: gloo | ||
app.kubernetes.io/name: gateway-proxy-tracing | ||
name: gateway-proxy-tracing | ||
spec: | ||
bindAddress: '::' | ||
bindPort: 18080 | ||
proxyNames: | ||
- gateway-proxy | ||
httpGateway: | ||
virtualServiceSelector: | ||
gateway-type: tracing | ||
options: | ||
httpConnectionManagerSettings: | ||
tracing: | ||
openTelemetryConfig: | ||
collectorUpstreamRef: | ||
name: opentelemetry-collector | ||
namespace: default | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: gateway-proxy-tracing | ||
labels: | ||
app.kubernetes.io/name: gateway-proxy-tracing-service | ||
spec: | ||
ports: | ||
- name: gateway-proxy-tracing | ||
port: 18080 | ||
protocol: TCP | ||
targetPort: 18080 | ||
selector: | ||
gateway-proxy: live | ||
gateway-proxy-id: gateway-proxy | ||
|
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