Skip to content

Commit

Permalink
Added helm chart suspend parameter
Browse files Browse the repository at this point in the history
Signed-off-by: yutachaos <18604471+yutachaos@users.noreply.github.com>
  • Loading branch information
yutachaos committed Sep 7, 2021
1 parent e6926e1 commit bbcf848
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/descheduler/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ metadata:
{{- include "descheduler.labels" . | nindent 4 }}
spec:
schedule: {{ .Values.schedule | quote }}
{ { - if .Values.suspend } }
suspend: { { .Values.suspend } }
{ { - end } }
concurrencyPolicy: "Forbid"
{{- if .Values.startingDeadlineSeconds }}
startingDeadlineSeconds: {{ .Values.startingDeadlineSeconds }}
Expand Down
1 change: 1 addition & 0 deletions charts/descheduler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ fullnameOverride: ""

cronJobApiVersion: "batch/v1" # Use "batch/v1beta1" for k8s version < 1.21.0. TODO(@7i) remove with 1.23 release
schedule: "*/2 * * * *"
suspend: false
#startingDeadlineSeconds: 200
#successfulJobsHistoryLimit: 1
#failedJobsHistoryLimit: 1
Expand Down

0 comments on commit bbcf848

Please sign in to comment.