Skip to content

Commit

Permalink
[jaeger] allInOne add option tolerations (#588)
Browse files Browse the repository at this point in the history
Signed-off-by: chenlujjj <[email protected]>
  • Loading branch information
chenlujjj authored Jul 11, 2024
1 parent 1dca639 commit ebdb6ea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
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: 1.53.0
description: A Jaeger Helm chart for Kubernetes
name: jaeger
type: application
version: 3.1.0
version: 3.1.1
# CronJobs require v1.21
kubeVersion: ">= 1.21-0"
keywords:
Expand Down
6 changes: 5 additions & 1 deletion charts/jaeger/templates/allinone-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
prometheus.io/port: "14269"
prometheus.io/scrape: "true"
spec:
{{- include "allInOne.imagePullSecrets" . | nindent 6 }}
{{- include "allInOne.imagePullSecrets" . | nindent 6 }}
containers:
- env:
{{- if .Values.allInOne.extraEnv }}
Expand Down Expand Up @@ -150,4 +150,8 @@ spec:
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.allInOne.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end -}}
1 change: 1 addition & 0 deletions charts/jaeger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ allInOne:
# cpu: 256m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
topologySpreadContraints: []
podSecurityContext:
Expand Down

0 comments on commit ebdb6ea

Please sign in to comment.