[Backport 7.1.x] chore/platform: update k8s to support jaeger 2.16 config#428
Merged
[Backport 7.1.x] chore/platform: update k8s to support jaeger 2.16 config#428
Conversation
## Description closes PLAT-486 Update manifests to support 2.16 jaeger configurations style This follows changes to the sourcegraph jaeger base image sourcegraph/sourcegraph#10912 ## Test plan `kubectl kustomize base/monitoring/jaeger` <details> ``` ➜ deploy-sourcegraph-k8s git:(wg/plat/jaeger-2.16) ✗ kubectl kustomize base/monitoring/jaeger apiVersion: v1 kind: Service metadata: labels: app: jaeger app.kubernetes.io/component: jaeger app.kubernetes.io/name: jaeger deploy: sourcegraph sourcegraph-resource-requires: no-cluster-admin name: jaeger-collector spec: ports: - name: http-otlp port: 4318 protocol: TCP targetPort: http-otlp - name: grpc-otlp port: 4317 protocol: TCP targetPort: grpc-otlp selector: app.kubernetes.io/component: all-in-one app.kubernetes.io/name: jaeger type: ClusterIP --- apiVersion: v1 kind: Service metadata: labels: app: jaeger app.kubernetes.io/component: jaeger app.kubernetes.io/name: jaeger deploy: sourcegraph sourcegraph-resource-requires: no-cluster-admin name: jaeger-query spec: ports: - name: query-http port: 16686 protocol: TCP targetPort: 16686 selector: app.kubernetes.io/component: all-in-one app.kubernetes.io/name: jaeger type: ClusterIP --- apiVersion: apps/v1 kind: Deployment metadata: labels: app: jaeger app.kubernetes.io/component: jaeger app.kubernetes.io/name: jaeger deploy: sourcegraph sourcegraph-resource-requires: no-cluster-admin name: jaeger spec: replicas: 1 selector: matchLabels: app: jaeger app.kubernetes.io/component: all-in-one app.kubernetes.io/name: jaeger strategy: type: Recreate template: metadata: annotations: prometheus.io/port: "16686" prometheus.io/scrape: "true" labels: app: jaeger app.kubernetes.io/component: all-in-one app.kubernetes.io/name: jaeger deploy: sourcegraph spec: containers: - args: - --config=/etc/jaeger/jaeger-config.yaml image: index.docker.io/sourcegraph/jaeger-all-in-one:6.2.1106@sha256:c1ee8d613be75032066a9da24f54ebae19eacb63e42338e920abd6383ce168a6 name: jaeger ports: - containerPort: 5778 protocol: TCP - containerPort: 16686 name: http protocol: TCP - containerPort: 4317 name: grpc-otlp protocol: TCP - containerPort: 4318 name: http-otlp protocol: TCP - containerPort: 13133 name: health protocol: TCP readinessProbe: httpGet: path: /status port: 13133 initialDelaySeconds: 5 resources: limits: cpu: "1" memory: 1G requests: cpu: 500m memory: 500M securityContext: allowPrivilegeEscalation: false runAsGroup: 101 runAsUser: 100 securityContext: fsGroup: 101 fsGroupChangePolicy: OnRootMismatch runAsUser: 100 ``` </details> (cherry picked from commit 3adbbdd)
DaedalusG
approved these changes
Mar 19, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backport 3adbbdd from #427
Description
closes PLAT-486
Update manifests to support 2.16 jaeger configurations style
This follows changes to the sourcegraph jaeger base image https://github.com/sourcegraph/sourcegraph/pull/10912
Test plan
kubectl kustomize base/monitoring/jaegerDetails