[bitnami/kubewatch] Fix missing tolerations (#5187)

This commit is contained in:
Javier J. Salmerón-García
2021-01-22 16:47:45 +01:00
committed by GitHub
parent 1a0f82046e
commit 0f3febaab6
2 changed files with 4 additions and 1 deletions

View File

@@ -28,4 +28,4 @@ name: kubewatch
sources:
- https://github.com/bitnami/bitnami-docker-kubewatch
- https://github.com/bitnami-labs/kubewatch
version: 3.0.4
version: 3.0.5

View File

@@ -37,6 +37,9 @@ spec:
{{- if .Values.nodeSelector }}
nodeSelector: {{- include "common.tplvalues.render" (dict "value" .Values.nodeSelector "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.tolerations }}
tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.tolerations "context" $) | nindent 8 }}
{{- end }}
restartPolicy: Always
serviceAccountName: {{ include "kubewatch.serviceAccountName" . }}
{{- if .Values.podSecurityContext.enabled }}