From 6d391d52992afecd20dd864989a176a837fcfb93 Mon Sep 17 00:00:00 2001 From: Alessio Greggi Date: Sun, 26 Jan 2025 23:22:47 +0100 Subject: [PATCH] fix chart fields Signed-off-by: Alessio Greggi --- charts/capsule/templates/deployment.yaml | 4 ++-- charts/capsule/values.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/capsule/templates/deployment.yaml b/charts/capsule/templates/deployment.yaml index 4e188adc..43edf215 100644 --- a/charts/capsule/templates/deployment.yaml +++ b/charts/capsule/templates/deployment.yaml @@ -38,13 +38,13 @@ spec: dnsPolicy: ClusterFirstWithHostNet {{- end }} {{- if .Values.manager.hostPID }} - hostPID: {{- .Values.manager.hostPID }} + hostPID: {{ .Values.manager.hostPID }} {{- else }} hostPID: false {{- end }} {{- if eq .Values.priorityClassName "" }} {{- else }} - priorityClassName: {{- .Values.priorityClassName }} + priorityClassName: {{ .Values.priorityClassName }} {{- end }} {{- with .Values.nodeSelector }} nodeSelector: diff --git a/charts/capsule/values.yaml b/charts/capsule/values.yaml index 5127fd8f..3a421cbf 100644 --- a/charts/capsule/values.yaml +++ b/charts/capsule/values.yaml @@ -162,10 +162,10 @@ manager: resources: {} # -- Set the additional volumes needed for the Capsule manager container - volumes: {} + volumes: [] # -- Set the additional volumeMounts needed for the Capsule manager container - volumeMounts: {} + volumeMounts: [] # -- Set the securityContext for the Capsule container securityContext: {}