30 lines
769 B
YAML
30 lines
769 B
YAML
apiVersion: litmuschaos.io/v1alpha1
|
|
description:
|
|
message: |
|
|
Injects network packet loss on pods belonging to an app deployment
|
|
kind: ChaosExperiment
|
|
metadata:
|
|
name: pod-network-loss
|
|
version: 0.1.2
|
|
spec:
|
|
definition:
|
|
image: "litmuschaos/ansible-runner:ci"
|
|
args:
|
|
- -c
|
|
- ansible-playbook ./experiments/generic/pod_network_loss/pod_network_loss_ansible_logic.yml -i /etc/ansible/hosts -vv; exit 0
|
|
command:
|
|
- /bin/bash
|
|
env:
|
|
- name: TARGET_CONTAINER
|
|
value: ""
|
|
- name: NETWORK_INTERFACE
|
|
value: "eth0"
|
|
- name: NETWORK_PACKET_LOSS_PERCENTAGE
|
|
value: "100" #in PERCENTAGE
|
|
- name: TOTAL_CHAOS_DURATION
|
|
value: "60000" #in ms
|
|
- name: LIB
|
|
value: "pumba"
|
|
labels:
|
|
name: pod-network-loss
|