Skip to content

Commit

Permalink
chaos(engine): add time shift chaos test (#6143)
Browse files Browse the repository at this point in the history
ref #5640
  • Loading branch information
amyangfei authored Jul 4, 2022
1 parent f1613fa commit 0af9d80
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dataflow_engine_chaos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
"pod-kill-dataflow",
"network-partition-dataflow",
"network-emulation-dataflow",
"time-shift-dataflow",
]

# Steps represent a sequence of tasks that will be executed as part of the job
Expand Down
25 changes: 25 additions & 0 deletions engine/chaos/manifests/time-shift-dataflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: chaos-mesh.org/v1alpha1
kind: TimeChaos
metadata:
name: time-shift-dataflow
labels:
app: time-shift-dataflow
spec:
mode: fixed
value: 5
duration: "30s"
selector:
pods:
default: # default namespace
- server-master-0
- server-master-1
- server-master-2
- executor-0
- executor-1
- executor-2
- executor-3
timeOffset: '-10m'
clockIds:
- CLOCK_REALTIME
scheduler:
cron: "@every 2m"

0 comments on commit 0af9d80

Please sign in to comment.