Kubernetes
allow_dns_access
Allow DNS access from pods
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosk8s.chaosmesh.network.actions |
Name | duplicate_packets |
Return | mapping |
Usage
JSON
{
"name": "duplicate-packets",
"type": "action",
"provider": {
"type": "python",
"module": "chaosk8s.chaosmesh.network.actions",
"func": "duplicate_packets",
"arguments": {
"name": ""
}
}
}
YAML
name: duplicate-packets
provider:
arguments:
name: ''
func: duplicate_packets
module: chaosk8s.chaosmesh.network.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
name | string | Yes | Name | A unique name to identify this particular fault | |
direction | string | to | No | Direction | Which direction to apply the duplication: from , to or both |
duplicate | string | Yes | Probability | Packet duplication probability between 0 and 100 | |
correlation | string | No | Correlation | How much correlation compared to the previous duplication. Between 0 and 100 | |
ns | string | default | No | Namespace | Namespace where to apply the fault |
namespaces_selectors | string | No | Namespaces Selectors | Comma-separated list of namespaces to scope the fault to | |
label_selectors | string | No | Label Selectors | Comma-separated list of key=value pairs to scope the fault to | |
annotations_selectors | string | No | Annotation Selectors | Comma-separated list of key=value pairs to scope the fault to | |
mode | string | one | No | Mode | Mode of fault injection: one , all , fixed , fixed-percent , random-max-percent |
mode_value | string | No | Mode Value | Value depending on the mode above | |
external_targets | string | No | External Targets | IPv4 or domain targetted by the fault when direction is set to “to” | |
target_namespaces_selectors | string | No | Target Namespaces Selectors | Comma-separated list of namespaces to scope the fault to the right target pod. Only works when direction is set to both or from | |
target_label_selectors | string | No | Target Label Selectors | Comma-separated list of key=value pairs to scope the network fault to the right target pod. Only works when direction is set to both or from | |
target_annotations_selectors | string | No | Target Annotation Selectors | Comma-separated list of key=value pairs to scope the fault to the right target pod. Only works when direction is set to both or from | |
target_mode | string | one | No | Target Mode | Target Mode of fault injection: one , all , fixed , fixed-percent , random-max-percent |
target_mode_value | string | No | Target Mode Value | Value depending on the mode above |
This action relies on Chaos Mesh to perform the fault. Make sure to install it before hand.
Signature
def duplicate_packets(
name: str,
ns: str = 'default',
namespaces_selectors: Optional[str] = None,
label_selectors: Optional[str] = None,
annotations_selectors: Optional[str] = None,
mode: str = 'one',
mode_value: Optional[str] = None,
direction: str = 'to',
duplicate: Optional[str] = None,
correlation: Optional[str] = None,
external_targets: Union[str, List[str], NoneType] = None,
target_mode: Optional[str] = 'one',
target_mode_value: Optional[str] = None,
target_namespaces_selectors: Union[str, List[str], NoneType] = None,
target_label_selectors: Union[str, Dict[str, Any], NoneType] = None,
target_annotations_selectors: Union[str, Dict[str, Any],
NoneType] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass