Skip to content

Commit

Permalink
fix chart fields
Browse files Browse the repository at this point in the history
Signed-off-by: Alessio Greggi <[email protected]>
  • Loading branch information
alegrey91 committed Jan 26, 2025
1 parent 1f3149c commit 6d391d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/capsule/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions charts/capsule/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}
Expand Down

0 comments on commit 6d391d5

Please sign in to comment.