Skip to content
Open
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
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.17.0
description: A Jaeger Helm chart for Kubernetes
name: jaeger
type: application
version: 4.7.0
version: 4.7.1
# 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
5 changes: 5 additions & 0 deletions charts/jaeger/templates/jaeger/jaeger-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ spec:
{{- if hasKey .Values.jaeger "replicas" }}
replicas: {{ .Values.jaeger.replicas }}
{{- end }}
{{- if .Values.jaeger.strategy }}
strategy:
{{- toYaml .Values.jaeger.strategy | nindent 4 }}
{{- else }}
strategy:
type: Recreate
{{- end }}
selector:
matchLabels:
{{- include "jaeger.selectorLabels" . | nindent 6 }}
Expand Down
Loading