forked from gardener/chaos-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun-system-components-pod-failure-simulation.json
More file actions
31 lines (31 loc) · 1.84 KB
/
run-system-components-pod-failure-simulation.json
File metadata and controls
31 lines (31 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"title": "Title goes here...",
"description": "Description goes here...",
"method": [
{
"type": "action",
"name": "run-system-components-pod-failure-simulation",
"provider": {
"type": "python",
"module": "chaosgarden.garden.actions",
"func": "run_system_components_pod_failure_simulation",
"arguments": {
"min_runtime": 0, # keep `0` (immediate) or replace with number of seconds pod must run at least
"max_runtime": 0, # keep `0` (immediate) or replace with number of seconds pod may run at most
"grace_period": 0, # keep `0` (immediate) or replace with number of seconds pod may take to terminate
"zone": 0, # replace with your zone index (alphabetically ordered, starting at 0)
"ignore_daemon_sets": false, # specify whether or not daemonset pods shall be ignored
"pod_node_label_selector": null, # replace with your pod node label selector
"pod_label_selector": null, # replace with your pod label selector
"pod_metadata_selector": null, # replace with your pod metadata your selector
"pod_owner_selector": null, # replace with your pod owner selector
"duration": 60 # replace with time in seconds this action shall run
}
}
}
],
"configuration": {
"garden_project": "...", # replace with your project name; field name fixed
"garden_shoot": "..." # replace with your shoot name; field name fixed
}
}