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"]
@@ -39,7 +48,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
@@ -49,35 +58,35 @@ spec:
env:
# set chaos duration (in sec) as desired
- name: TOTAL_CHAOS_DURATION
value: '30'
value: "30"
# set chaos interval (in sec) as desired
- name: CHAOS_INTERVAL
value: '30'
value: "30"
# set the GCP project id
- name: GCP_PROJECT_ID
value: ''
value: ""
# set the zone in which all the disks are created
# all the disks must exist in the same zone
- name: ZONES
value: ''
value: ""
# set the label of the target disk volumes
- name: DISK_VOLUME_LABEL
value: ''
value: ""
# set the percentage value of the disks with the given label
# which should be targeted as part of the chaos injection
- name: DISK_AFFECTED_PERC
value: ''
value: ""
- name: DEFAULT_HEALTH_CHECK
value: 'false'
value: "false"
- name: SEQUENCE
value: 'parallel'
value: "parallel"
labels:
name: gcp-vm-disk-loss-by-label

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"]
@@ -39,7 +48,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
@@ -48,40 +57,40 @@ spec:
- /bin/bash
env:
- name: TOTAL_CHAOS_DURATION
value: '30'
value: "30"
- name: CHAOS_INTERVAL
value: '30'
value: "30"
# Period to wait before and after injection of chaos in sec
- name: RAMP_TIME
value: ''
value: ""
# parallel or serial; determines how chaos is injected
- name: SEQUENCE
value: 'parallel'
value: "parallel"
# set the GCP project id
- name: GCP_PROJECT_ID
value: ''
value: ""
# set the disk volume name(s) as comma seperated values
# eg. volume1,volume2,...
- name: DISK_VOLUME_NAMES
value: ''
value: ""
# set the disk zone(s) as comma seperated values in the corresponding
# order of DISK_VOLUME_NAME
# eg. zone1,zone2,...
- name: ZONES
value: ''
value: ""
- name: DEFAULT_HEALTH_CHECK
value: 'false'
value: "false"
# parallel or serial; determines how chaos is injected
- name: SEQUENCE
value: 'parallel'
value: "parallel"
labels:
name: gcp-vm-disk-loss

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"]
@@ -43,7 +52,7 @@ spec:
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list"]
image: "litmuschaos/go-runner:3.0.0-beta10"
image: "litmuschaos/go-runner:latest"
imagePullPolicy: Always
args:
- -c
@@ -53,39 +62,39 @@ spec:
env:
# set chaos duration (in sec) as desired
- name: TOTAL_CHAOS_DURATION
value: '30'
value: "30"
# set chaos interval (in sec) as desired
- name: CHAOS_INTERVAL
value: '30'
value: "30"
- name: SEQUENCE
value: 'parallel'
value: "parallel"
# GCP project ID to which the VM instances belong
- name: GCP_PROJECT_ID
value: ''
value: ""
# Label of the target VM instance(s)
- name: INSTANCE_LABEL
value: ''
value: ""
# Zone in which the target VM instance(s) filtered by the label exist
# all the instances should lie in a single zone
- name: ZONES
value: ''
value: ""
# enable it if the target instance is a part of a managed instance group
- name: MANAGED_INSTANCE_GROUP
value: 'disable'
value: "disable"
# set the percentage value of the instances with the given label
# which should be targeted as part of the chaos injection
- name: INSTANCE_AFFECTED_PERC
value: ''
value: ""
- name: DEFAULT_HEALTH_CHECK
value: 'false'
value: "false"
labels:
name: gcp-vm-instance-stop-by-label

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"]
@@ -43,7 +52,7 @@ spec:
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list"]
image: "litmuschaos/go-runner:3.0.0-beta10"
image: "litmuschaos/go-runner:latest"
imagePullPolicy: Always
args:
- -c
@@ -52,44 +61,44 @@ spec:
- /bin/bash
env:
- name: TOTAL_CHAOS_DURATION
value: '30'
value: "30"
- name: CHAOS_INTERVAL
value: '30'
value: "30"
# parallel or serial; determines how the VM instances are terminated, all at once or one at a time
- name: SEQUENCE
value: 'parallel'
value: "parallel"
# period to wait before and after injection of chaos in sec
- name: RAMP_TIME
value: ''
value: ""
# enable or disable; shall be set to enable if the target instances are a part of a managed instance group
- name: MANAGED_INSTANCE_GROUP
value: 'disable'
value: "disable"
# Instance name of the target VM instance(s)
# Multiple instance names can be provided as comma separated values ex: instance1,instance2
- name: VM_INSTANCE_NAMES
value: ''
value: ""
# GCP project ID to which the VM instances belong
- name: GCP_PROJECT_ID
value: ''
value: ""
# Instance zone(s) of the target VM instance(s)
# If more than one instance is targetted, provide zone for each in the order of their
# respective instance name in VM_INSTANCE_NAME as comma separated values ex: zone1,zone2
- name: ZONES
value: ''
value: ""
- name: DEFAULT_HEALTH_CHECK
value: 'false'
value: "false"
# parallel or serial; determines how chaos is injected
- name: SEQUENCE
value: 'parallel'
value: "parallel"
labels:
name: gcp-vm-instance-stop