Skip to content

Commit 7110c61

Browse files
elukeymehul
authored and
mehul
committed
[jaeger] Add securityContext for the oauth sidecar in query-deploy.yaml (jaegertracing#600)
The sidecar is missing the securityContext entry, and it makes it difficult to apply specific settings in the context of K8s PSS (migrating from PSP for example). Signed-off-by: Luca Toscano <ltoscano@wikimedia.org> Signed-off-by: mehul <mehulsharam4786@gmail.com>
1 parent fb7d680 commit 7110c61

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

charts/jaeger/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: 1.53.0
33
description: A Jaeger Helm chart for Kubernetes
44
name: jaeger
55
type: application
6-
version: 3.2.0
6+
version: 3.2.1
77
# CronJobs require v1.21
88
kubeVersion: ">= 1.21-0"
99
keywords:

charts/jaeger/templates/query-deploy.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ spec:
136136
port: admin
137137
{{- if .Values.query.oAuthSidecar.enabled }}
138138
- name: {{ template "jaeger.agent.name" . }}-oauth2-sidecar
139+
securityContext:
140+
{{- toYaml .Values.query.securityContext | nindent 10 }}
139141
image: {{ include "oAuthSidecar.image" . }}
140142
imagePullPolicy: {{ .Values.query.oAuthSidecar.image.pullPolicy }}
141143
args:

0 commit comments

Comments
 (0)