Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c8845e8

Browse files
authoredNov 20, 2024··
CHAOSPLT-447: Add a spec field for pausing DisruptionCrons (#933)
* CHAOSPLT-447: Add a spec field for pausing DisruptionCrons * Add a new metric for counting paused disruptioncrons
1 parent db6184a commit c8845e8

File tree

8 files changed

+78
-0
lines changed

8 files changed

+78
-0
lines changed
 

‎api/v1beta1/disruption_cron_types.go

+5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ type DisruptionCronSpec struct {
4747
// The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
4848
Schedule string `json:"schedule"`
4949

50+
// If set to true, no disruptions will be created from this DisruptionCron
51+
// useful if there's a reason to temporarily stop injecting, but without
52+
// deleting this DisruptionCron
53+
Paused bool `json:"paused,omitempty"`
54+
5055
// Optional deadline for starting the disruption if it misses scheduled time
5156
// for any reason. Missed disruption executions will be counted as failed ones.
5257
// +nullable

‎chart/templates/generated/chaos.datadoghq.com_disruptioncrons.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,12 @@ spec:
630630
required:
631631
- count
632632
type: object
633+
paused:
634+
description: |-
635+
If set to true, no disruptions will be created from this DisruptionCron
636+
useful if there's a reason to temporarily stop injecting, but without
637+
deleting this DisruptionCron
638+
type: boolean
633639
reporting:
634640
description: |-
635641
Reporting provides additional reporting options in order to send a message to a custom slack channel

‎controllers/disruption_cron_controller.go

+7
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,13 @@ func (r *DisruptionCronReconciler) Reconcile(ctx context.Context, req ctrl.Reque
120120
return ctrl.Result{}, err
121121
}
122122

123+
if instance.Spec.Paused {
124+
r.handleMetricSinkError(r.MetricsSink.MetricPausedCron(DisruptionCronTags))
125+
r.log.Debugw("disruptioncron has been paused, will not resume until spec.paused is false")
126+
127+
return ctrl.Result{}, nil
128+
}
129+
123130
// Get next scheduled run or time of unprocessed run
124131
// If multiple unmet start times exist, start the last one
125132
missedRun, nextRun, err := r.getNextSchedule(instance, time.Now())

‎docs/disruption_cron.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ metadata:
1919
namespace: chaos-demo # it must be in the same namespace as targeted resources
2020
spec:
2121
schedule: "*/15 * * * *" # cron syntax specifying that disruption occurs every 15 minutes
22+
paused: false # set to true if you want to disable disruption creation temporarily (until set to false again)
2223
targetResource: # a resource to target
2324
kind: deployment # a resource name to target
2425
name: demo-curl # can be either deployment or statefulset

‎o11y/metrics/datadog/datadog.go

+5
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,11 @@ func (d Sink) MetricDisruptionScheduled(tags []string) error {
252252
return d.metricWithStatus(d.prefix+"schedule.disruption_scheduled", tags)
253253
}
254254

255+
// MetricPausedCron reports when a disruption cron has reconciled in a paused state
256+
func (d Sink) MetricPausedCron(tags []string) error {
257+
return d.metricWithStatus(d.prefix+"schedule.paused", tags)
258+
}
259+
255260
func boolToStatus(succeed bool) string {
256261
var status string
257262
if succeed {

‎o11y/metrics/metrics.go

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ type Sink interface {
5151
MetricMissingTargetFound(tags []string) error
5252
MetricNextScheduledTime(time time.Duration, tags []string) error
5353
MetricDisruptionScheduled(tags []string) error
54+
MetricPausedCron(tags []string) error
5455
}
5556

5657
// GetSink returns an initiated sink

‎o11y/metrics/noop/noop.go

+7
Original file line numberDiff line numberDiff line change
@@ -247,3 +247,10 @@ func (n Sink) MetricDisruptionScheduled(tags []string) error {
247247

248248
return nil
249249
}
250+
251+
// MetricPausedCron reports when a disruption cron has reconciled in a paused state
252+
func (n Sink) MetricPausedCron(tags []string) error {
253+
n.log.Debugf("NOOP: MetricPausedCron %s\n", tags)
254+
255+
return nil
256+
}

‎o11y/metrics/sink_mock.go

+46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.