Compare commits

...

6 Commits

Author SHA1 Message Date
chahat sagar bd7ce6db25
bump python version (#648) 2025-07-19 17:02:17 -04:00
Yuri Shkuro 8ac04753df
Point to v2 chart
Signed-off-by: Yuri Shkuro <yurishkuro@users.noreply.github.com>
2025-06-26 21:05:49 -04:00
Paul Hewlett e3ff031bfa
[jaeger] TopologySpreadConstraints (#637) 2025-03-21 09:04:22 +11:00
lsu-tc 9c9abf4646
add schema nodeSelector (#629) 2025-01-25 02:53:10 +11:00
Ryan C. Underwood 2a624a7195
[jaeger] Support gRPC storage in Jaeger >=1.60.0 (#627) 2025-01-16 11:29:15 +11:00
Ryan C. Underwood ba67df8984
[jaeger] Support gRPC storage in Jaeger >=1.60.0 (#626) 2025-01-16 09:45:34 +11:00
10 changed files with 31 additions and 6 deletions

View File

@ -10,9 +10,9 @@ runs:
# Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
# yamllint (https://github.com/adrienverge/yamllint) which require Python
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: '3.11'
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1

View File

@ -18,9 +18,9 @@ jobs:
# Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
# yamllint (https://github.com/adrienverge/yamllint) which require Python
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: '3.11'
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1

View File

@ -5,6 +5,11 @@
This functionality is in beta and is subject to change. The code is provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features.
# 🛑 If you are looking for Helm Chart for Jaeger-v2
it is located in the [v2 branch](https://github.com/jaegertracing/helm-charts/blob/v2/charts/jaeger/README-v2.md).
## Usage
[Helm](https://helm.sh) must be installed to use the charts.

View File

@ -3,7 +3,7 @@ appVersion: 1.53.0
description: A Jaeger Helm chart for Kubernetes
name: jaeger
type: application
version: 3.3.3
version: 3.4.1
# CronJobs require v1.21
kubeVersion: ">= 1.21-0"
keywords:

View File

@ -421,7 +421,7 @@ Cassandra, Elasticsearch, or grpc-plugin, badger, memory related environment var
{{ include "cassandra.env" . }}
{{- else if eq .Values.storage.type "elasticsearch" -}}
{{ include "elasticsearch.env" . }}
{{- else if eq .Values.storage.type "grpc-plugin" -}}
{{- else if or (eq .Values.storage.type "grpc-plugin") (eq .Values.storage.type "grpc") -}}
{{ include "grpcPlugin.env" . }}
{{- else if eq .Values.storage.type "badger" -}}
{{ include "badger.env" . }}

View File

@ -100,6 +100,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.schema.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end -}}
{{- end -}}
{{- end -}}

View File

@ -222,6 +222,10 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.collector.topologySpreadConstraints }}
topologySpreadConstraints:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.collector.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}

View File

@ -43,6 +43,10 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.ingester.topologySpreadConstraints }}
topologySpreadConstraints:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.ingester.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}

View File

@ -312,6 +312,10 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.query.topologySpreadConstraints }}
topologySpreadConstraints:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.query.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}

View File

@ -257,6 +257,7 @@ schema:
podLabels: {}
securityContext: {}
podSecurityContext: {}
nodeSelector: {}
## Deadline for cassandra schema creation job
activeDeadlineSeconds: 300
extraEnv:
@ -353,6 +354,7 @@ ingester:
nodeSelector: {}
tolerations: []
affinity: {}
topologySpreadContraints: []
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
@ -557,6 +559,7 @@ collector:
nodeSelector: {}
tolerations: []
affinity: {}
topologySpreadContraints: []
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
@ -740,6 +743,7 @@ query:
nodeSelector: {}
tolerations: []
affinity: {}
topologySpreadContraints: []
podAnnotations: {}
## Additional pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/