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

Bump gateway image to register missing Jaeger UI routes #1082

Merged
Merged
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions .chloggen/jaeger_ui_routes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: bug_fix

# The name of the component, or a single word describing the area of concern, (e.g. tempostack, tempomonolithic, github action)
component: tempostack, tempomonolithic

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Register missing Jaeger UI routes
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where are you implementing this? I only see some changes in manifest files.

Copy link
Collaborator Author

@andreasgerstmayr andreasgerstmayr Nov 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's implemented in observatorium/api#781, and this PR updates the image to use the latest version where this fix is included.

I thought it makes sense to copy the actual reason/fix to the operator changelog, versus just writing "bump gateway" in the operator changelog.


# One or more tracking issues related to the change
issues: [1082]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext: |
Without these routes, hitting refresh on the trace detail, system architecture or monitor page of Jaeger UI results in a 404.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ OPERATOR_VERSION ?= 0.14.0
TEMPO_VERSION ?= 2.6.1
JAEGER_QUERY_VERSION ?= 1.62.0
TEMPO_QUERY_VERSION ?= 2.6.1
TEMPO_GATEWAY_VERSION ?= main-2024-10-16-43b97ec
TEMPO_GATEWAY_VERSION ?= main-2024-11-05-28e4c83
TEMPO_GATEWAY_OPA_VERSION ?= main-2024-10-09-7237863
OAUTH_PROXY_VERSION=4.14

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ metadata:
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.14.0
createdAt: "2024-10-30T12:08:06Z"
createdAt: "2024-11-06T09:57:13Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand Down Expand Up @@ -1470,7 +1470,7 @@ spec:
- name: RELATED_IMAGE_TEMPO_QUERY
value: docker.io/grafana/tempo-query:2.6.1
- name: RELATED_IMAGE_TEMPO_GATEWAY
value: quay.io/observatorium/api:main-2024-10-16-43b97ec
value: quay.io/observatorium/api:main-2024-11-05-28e4c83
- name: RELATED_IMAGE_TEMPO_GATEWAY_OPA
value: quay.io/observatorium/opa-openshift:main-2024-10-09-7237863
- name: RELATED_IMAGE_OAUTH_PROXY
Expand Down Expand Up @@ -1619,7 +1619,7 @@ spec:
name: jaeger-query
- image: docker.io/grafana/tempo-query:2.6.1
name: tempo-query
- image: quay.io/observatorium/api:main-2024-10-16-43b97ec
- image: quay.io/observatorium/api:main-2024-11-05-28e4c83
name: tempo-gateway
- image: quay.io/observatorium/opa-openshift:main-2024-10-09-7237863
name: tempo-gateway-opa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ metadata:
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.14.0
createdAt: "2024-10-30T12:08:04Z"
createdAt: "2024-11-06T09:57:12Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand Down Expand Up @@ -1480,7 +1480,7 @@ spec:
- name: RELATED_IMAGE_TEMPO_QUERY
value: docker.io/grafana/tempo-query:2.6.1
- name: RELATED_IMAGE_TEMPO_GATEWAY
value: quay.io/observatorium/api:main-2024-10-16-43b97ec
value: quay.io/observatorium/api:main-2024-11-05-28e4c83
- name: RELATED_IMAGE_TEMPO_GATEWAY_OPA
value: quay.io/observatorium/opa-openshift:main-2024-10-09-7237863
- name: RELATED_IMAGE_OAUTH_PROXY
Expand Down Expand Up @@ -1640,7 +1640,7 @@ spec:
name: jaeger-query
- image: docker.io/grafana/tempo-query:2.6.1
name: tempo-query
- image: quay.io/observatorium/api:main-2024-10-16-43b97ec
- image: quay.io/observatorium/api:main-2024-11-05-28e4c83
name: tempo-gateway
- image: quay.io/observatorium/opa-openshift:main-2024-10-09-7237863
name: tempo-gateway-opa
Expand Down
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
- name: RELATED_IMAGE_TEMPO_QUERY
value: docker.io/grafana/tempo-query:2.6.1
- name: RELATED_IMAGE_TEMPO_GATEWAY
value: quay.io/observatorium/api:main-2024-10-16-43b97ec
value: quay.io/observatorium/api:main-2024-11-05-28e4c83
- name: RELATED_IMAGE_TEMPO_GATEWAY_OPA
value: quay.io/observatorium/opa-openshift:main-2024-10-09-7237863
- name: RELATED_IMAGE_OAUTH_PROXY
Expand Down
Loading