-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Have a config in the chaos_recommender dir (#615)
This will make it easy for the users to find, configure and run it. Signed-off-by: Naga Ravi Chaitanya Elluri <[email protected]>
- Loading branch information
1 parent
3fe22a0
commit 58d5d1d
Showing
2 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
application: openshift-etcd | ||
namespaces: openshift-etcd | ||
labels: app=openshift-etcd | ||
kubeconfig: ~/.kube/config.yaml | ||
prometheus_endpoint: <Prometheus_Endpoint> | ||
auth_token: <Auth_Token> | ||
scrape_duration: 10m | ||
chaos_library: "kraken" | ||
log_level: INFO | ||
json_output_file: False | ||
json_output_folder_path: | ||
|
||
# for output purpose only do not change if not needed | ||
chaos_tests: | ||
GENERIC: | ||
- pod_failure | ||
- container_failure | ||
- node_failure | ||
- zone_outage | ||
- time_skew | ||
- namespace_failure | ||
- power_outage | ||
CPU: | ||
- node_cpu_hog | ||
NETWORK: | ||
- application_outage | ||
- node_network_chaos | ||
- pod_network_chaos | ||
MEM: | ||
- node_memory_hog | ||
- pvc_disk_fill | ||
|
||
threshold: .7 | ||
cpu_threshold: .5 | ||
mem_threshold: .5 |