Skip to content

Commit

Permalink
feat: add quotes for .Values.skip_k8s_jobs, add tolerations
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasklem authored and chen-keinan committed Apr 26, 2021
1 parent a7c0fd5 commit 39e54c3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion snyk-monitor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ spec:
- name: LOG_LEVEL
value: {{ .Values.log_level }}
- name: SKIP_K8S_JOBS
value: {{ .Values.skip_k8s_jobs }}
value: {{ quote .Values.skip_k8s_jobs }}
{{- with .Values.envs }}
{{- toYaml . | trim | nindent 10 -}}
{{ end }}
Expand Down Expand Up @@ -122,3 +122,7 @@ spec:
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}

0 comments on commit 39e54c3

Please sign in to comment.