19 lines
545 B
YAML
19 lines
545 B
YAML
# contains details of the AUT(application under test)
|
|
# appns: name of the application
|
|
# applabel: label of the applicaton
|
|
# appkind: kind of the application. supports: deployment, statefulset, daemonset, rollout, deploymentconfig
|
|
apiVersion: litmuschaos.io/v1alpha1
|
|
kind: ChaosEngine
|
|
metadata:
|
|
name: engine-nginx
|
|
spec:
|
|
engineState: "active"
|
|
annotationCheck: "false"
|
|
# AUT details
|
|
appinfo:
|
|
appns: "default"
|
|
applabel: "app=nginx"
|
|
appkind: "deployment"
|
|
chaosServiceAccount: pod-delete-sa
|
|
experiments:
|
|
- name: pod-delete |