Compare commits
6 Commits
jaeger-3.3
...
main
Author | SHA1 | Date |
---|---|---|
|
bd7ce6db25 | |
|
8ac04753df | |
|
e3ff031bfa | |
|
9c9abf4646 | |
|
2a624a7195 | |
|
ba67df8984 |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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" . }}
|
||||
|
|
|
@ -100,6 +100,10 @@ spec:
|
|||
tolerations:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.schema.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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/
|
||||
|
|
Loading…
Reference in New Issue