Spring
change_assaults_configuration
Change Assaults configuration on a specific service
Disable Chaos Monkey on a specific service
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosspring.actions |
Name | disable_chaosmonkey |
Return | string |
Usage
JSON
{
"name": "disable-chaosmonkey",
"type": "action",
"provider": {
"type": "python",
"module": "chaosspring.actions",
"func": "disable_chaosmonkey",
"arguments": {
"base_url": ""
}
}
}
YAML
name: disable-chaosmonkey
provider:
arguments:
base_url: ''
func: disable_chaosmonkey
module: chaosspring.actions
type: python
type: action
Arguments
Name | Type | Default | Required |
---|---|---|---|
base_url | string | Yes | |
headers | mapping | null | No |
timeout | number | null | No |
Signature
def disable_chaosmonkey(base_url: str,
headers: Dict[str, Any] = None,
timeout: float = None,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> str:
pass