updated the tags to latest

Signed-off-by: Saranya-jena <saranya.jena@harness.io>
This commit is contained in:
Saranya-jena
2023-09-22 13:58:05 +05:30
parent 123e7450ef
commit 26c87550d7
61 changed files with 1111 additions and 670 deletions

View File

@@ -18,7 +18,16 @@ spec:
# Create and monitor the experiment & helper pods
- apiGroups: [""]
resources: ["pods"]
verbs: ["create", "delete", "get", "list", "patch", "update", "deletecollection"]
verbs:
[
"create",
"delete",
"get",
"list",
"patch",
"update",
"deletecollection",
]
# Performs CRUD operations on the events inside chaosengine and chaosresult
- apiGroups: [""]
resources: ["events"]
@@ -59,7 +68,7 @@ spec:
- apiGroups: ["litmuschaos.io"]
resources: ["chaosengines", "chaosexperiments", "chaosresults"]
verbs: ["create", "list", "get", "patch", "update", "delete"]
image: "litmuschaos/go-runner:3.0.0-beta10"
image: "litmuschaos/go-runner:latest"
imagePullPolicy: Always
args:
- -c
@@ -68,66 +77,66 @@ spec:
- /bin/bash
env:
- name: TARGET_CONTAINER
value: ''
value: ""
# provide lib image
- name: LIB_IMAGE
value: 'chaosnative/go-runner:ci'
value: "chaosnative/go-runner:ci"
- name: NETWORK_INTERFACE
value: 'eth0'
value: "eth0"
- name: TC_IMAGE
value: 'gaiadocker/iproute2'
value: "gaiadocker/iproute2"
- name: NETWORK_PACKET_LOSS_PERCENTAGE
value: '100' #in PERCENTAGE
value: "100" #in PERCENTAGE
- name: TOTAL_CHAOS_DURATION
value: '60' # in seconds
value: "60" # in seconds
# time period to wait before and after injection of chaos in sec
- name: RAMP_TIME
value: ''
value: ""
## percentage of total pods to target
- name: PODS_AFFECTED_PERC
value: ''
value: ""
- name: DEFAULT_HEALTH_CHECK
value: 'false'
value: "false"
- name: TARGET_PODS
value: ''
value: ""
# To select pods on specific node(s)
- name: NODE_LABEL
value: ''
value: ""
# provide the name of container runtime
# for litmus LIB, it supports docker, containerd, crio
# for pumba LIB, it supports docker only
- name: CONTAINER_RUNTIME
value: 'containerd'
value: "containerd"
# provide the destination ips
# chaos injection will be triggered for these destination ips
- name: DESTINATION_IPS
value: ''
value: ""
# provide the destination hosts
# chaos injection will be triggered for these destination hosts
- name: DESTINATION_HOSTS
value: ''
value: ""
# provide the socket file path
- name: SOCKET_PATH
value: '/run/containerd/containerd.sock'
value: "/run/containerd/containerd.sock"
## it defines the sequence of chaos execution for multiple target pods
## supported values: serial, parallel
- name: SEQUENCE
value: 'parallel'
value: "parallel"
labels:
name: pod-network-loss