File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## master / unreleased
44
5+ * [ BUGFIX] Querier: avoid rendering empty ` env: ` key when no env vars are set
56* [ BUGFIX] Ruler: fix sidecar securityContext using main container's condition instead of sidecar's
67
78## 3.3.4 / 2026-06-23
Original file line number Diff line number Diff line change @@ -88,10 +88,10 @@ spec:
8888 {{- if .Values.querier.containerSecurityContext.enabled }}
8989 securityContext : {{- omit .Values.querier.containerSecurityContext "enabled" | toYaml | nindent 12 }}
9090 {{- end }}
91+ {{- if .Values.querier.env }}
9192 env :
92- {{- if .Values.querier.env }}
93- {{- toYaml .Values.querier.env | nindent 12 }}
94- {{- end }}
93+ {{- toYaml .Values.querier.env | nindent 12 }}
94+ {{- end }}
9595 {{- with .Values.querier.lifecycle }}
9696 lifecycle :
9797 {{- toYaml . | nindent 12 }}
You can’t perform that action at this time.
0 commit comments