Skip to content

Commit

Permalink
Fix chart to set deletionTimeout value actually read by config.go (#799)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptnapoleon committed Oct 24, 2023
1 parent d7060a8 commit 99a8f91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
apiVersion: v2
name: chaos-controller
description: Datadog Chaos Controller chart
version: 2.6.0
version: 2.6.1
2 changes: 1 addition & 1 deletion chart/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ data:
clusterThreshold: {{ .Values.controller.safeMode.clusterThreshold }}
disruptionCronEnabled: {{ .Values.controller.disruptionCronEnabled }}
disruptionRolloutEnabled: {{ .Values.controller.disruptionRolloutEnabled }}
disruptionDeleteTimeout: {{ .Values.controller.disruptionDeleteTimeout }}
disruptionDeletionTimeout: {{ .Values.controller.disruptionDeletionTimeout }}
injector:
image: {{ template "chaos-controller.format-image" deepCopy .Values.global.chaos.defaultImage | merge .Values.global.oci | merge .Values.injector.image }}
imagePullSecrets: {{ .Values.injector.image.pullSecrets }}
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ controller:
ephemeralStorage: 1Gi
disruptionCronEnabled: true
disruptionRolloutEnabled: false
disruptionDeleteTimeout: 15m # The duration after which a disruption will be marked as "stuck on removal" if its removal process exceeds this duration.
disruptionDeletionTimeout: 15m # The duration after which a disruption will be marked as "stuck on removal" if its removal process exceeds this duration.

injector:
image:
Expand Down

0 comments on commit 99a8f91

Please sign in to comment.