Skip to content

Commit

Permalink
Merge pull request #420 from zerkms/tolerations-for-node
Browse files Browse the repository at this point in the history
Added tolerations for node support
  • Loading branch information
k8s-ci-robot authored Dec 13, 2019
2 parents 7255ebd + 2cbb6a6 commit 1369dec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions aws-ebs-csi-driver/templates/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -338,13 +338,12 @@ spec:
hostNetwork: true
priorityClassName: system-node-critical
tolerations:
- key: CriticalAddonsOnly
operator: Exists
{{ toYaml .Values.tolerations | indent 8 }}
containers:
- name: ebs-plugin
securityContext:
privileged: true
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
args:
- --endpoint=$(CSI_ENDPOINT)
- --logtostderr
Expand Down
4 changes: 3 additions & 1 deletion aws-ebs-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ resources: {}

nodeSelector: {}

tolerations: []
tolerations:
- key: CriticalAddonsOnly
operator: Exists

affinity: {}

Expand Down

0 comments on commit 1369dec

Please sign in to comment.