HELM: add option for tolerations

master
Jeff Knurek 6 years ago
parent 504f0f3af3
commit 6a94d8ccd2

@ -1,6 +1,6 @@
name: clair
home: https://coreos.com/clair
version: 0.1.0
version: 0.1.1
appVersion: 3.0.0-pre
description: Clair is an open source project for the static analysis of vulnerabilities in application containers.
icon: https://cloud.githubusercontent.com/assets/343539/21630811/c5081e5c-d202-11e6-92eb-919d5999c77a.png

@ -21,6 +21,10 @@ spec:
- name: "{{ .Chart.Name }}-config"
secret:
secretName: {{ template "clair.fullname" . }}
{{- if .Values.tolerations }}
tolerations:
{{ toYaml .Values.tolerations | indent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"

@ -55,6 +55,8 @@ config:
- apk
- dpkg
- rpm
tolerations: []
# Configuration values for the postgresql dependency.
# ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
postgresql:

Loading…
Cancel
Save