Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[incubator/kube-spot-termination-notice-handler] Add Support for Tolerations #5813

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion incubator/kube-spot-termination-notice-handler/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Watch and action AWS spot termination events
name: kube-spot-termination-notice-handler
version: 0.2.1
version: 0.3.0
appVersion: 1.8.1-1
home: https://github.com/egeland/kube-spot-termination-notice-handler
source:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,7 @@ spec:
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
{{- end }}
{{- if .Values.tolerations }}
tolerations:
{{ toYaml .Values.tolerations | indent 8 }}
{{- end }}
6 changes: 6 additions & 0 deletions incubator/kube-spot-termination-notice-handler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,9 @@ serviceAccount:
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name:

tolerations: []
# key: "dedicated"
# operator: "Equal"
# value: "gpu"
# effect: "NoSchedule"