Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions charts/jaeger/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 2.34.0
digest: sha256:63de10c1f68bedef391890484e1e29f2efd54e6dc7239ca60f0a572042efd4f3
generated: "2026-02-03T13:47:26.844621Z"
version: 2.36.0
digest: sha256:a9e48d71c1ab826e89a4115379550999c1787634d834acfe22122560393685b4
generated: "2026-02-10T19:36:02.0023006+01:00"
2 changes: 1 addition & 1 deletion charts/jaeger/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 2.14.1
description: A Jaeger Helm chart for Kubernetes
name: jaeger
type: application
version: 4.4.7
version: 4.4.8
# Artifact Hub annotations
# The jaeger image is whitelisted from security scanning because the reported
# CVEs are in the upstream Alpine base image (OpenSSL libcrypto3/libssl3) and
Expand Down
6 changes: 6 additions & 0 deletions charts/jaeger/templates/jaeger/jaeger-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ spec:
mountPath: /etc/jaeger/ui-config.json
subPath: ui-config.json
{{- end }}
{{- with .Values.jaeger.extraVolumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
securityContext:
{{- toYaml .Values.jaeger.podSecurityContext | nindent 8 }}
serviceAccountName: {{ template "jaeger.fullname" . }}
Expand All @@ -125,6 +128,9 @@ spec:
configMap:
name: ui-config
{{- end }}
{{- with .Values.jaeger.extraVolumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.jaeger.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
Expand Down
7 changes: 7 additions & 0 deletions charts/jaeger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,13 @@ jaeger:
runAsGroup: 10001
fsGroup: 10001
securityContext: {}
extraVolumes: []
# - name: badger-data
# persistentVolumeClaim:
# claimName: jaeger-badger-data
extraVolumeMounts: []
# - name: badger-data
# mountPath: /badger

# ------------------------------------------------------------------------------
# Storage Connection Settings
Expand Down
Loading