940850521: version upgraded for chaos-charts

This commit is contained in:
litmusbot
2021-06-15 21:57:31 +00:00
parent bd278ef948
commit 2c87b79afb

View File

@@ -25,6 +25,7 @@ spec:
- "pods/log" - "pods/log"
- "pods/exec" - "pods/exec"
- "secrets" - "secrets"
- "configmaps"
- "chaosengines" - "chaosengines"
- "chaosexperiments" - "chaosexperiments"
- "chaosresults" - "chaosresults"
@@ -35,7 +36,7 @@ spec:
- "patch" - "patch"
- "update" - "update"
- "delete" - "delete"
image: "litmuschaos/go-runner:latest" image: "litmuschaos/go-runner:ci"
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- -c - -c
@@ -48,6 +49,7 @@ spec:
- name: CHAOS_INTERVAL - name: CHAOS_INTERVAL
value: '60' value: '60'
# Period to wait before and after injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
@@ -66,6 +68,10 @@ spec:
- name: SEQUENCE - name: SEQUENCE
value: 'parallel' value: 'parallel'
# Provide the path of aws credentials mounted from secret
- name: AWS_SHARED_CREDENTIALS_FILE
value: '/tmp/cloud_config.yml'
# Provide the name of ssm doc # Provide the name of ssm doc
# if not using the default stress docs # if not using the default stress docs
- name: DOCUMENT_NAME - name: DOCUMENT_NAME
@@ -98,9 +104,9 @@ spec:
- name: MEMORY_PERCENTAGE - name: MEMORY_PERCENTAGE
value: '80' value: '80'
# provide the CPU chore to comsume # provide the CPU chores to be comsumed
# giving 0 will consume all the available cpu cores # 0 will consume all the available cpu cores
- name: CPU - name: CPU_CORE
value: '0' value: '0'
# provide the LIB # provide the LIB
@@ -113,6 +119,10 @@ spec:
app.kubernetes.io/part-of: litmus app.kubernetes.io/part-of: litmus
app.kubernetes.io/component: experiment-job app.kubernetes.io/component: experiment-job
app.kubernetes.io/version: latest app.kubernetes.io/version: latest
secrets:
- name: cloud-secret
mountPath: /tmp/
--- ---
apiVersion: litmuschaos.io/v1alpha1 apiVersion: litmuschaos.io/v1alpha1
description: description:
@@ -141,6 +151,7 @@ spec:
- "pods/log" - "pods/log"
- "pods/exec" - "pods/exec"
- "secrets" - "secrets"
- "configmaps"
- "chaosengines" - "chaosengines"
- "chaosexperiments" - "chaosexperiments"
- "chaosresults" - "chaosresults"
@@ -151,7 +162,7 @@ spec:
- "patch" - "patch"
- "update" - "update"
- "delete" - "delete"
image: "litmuschaos/go-runner:latest" image: "litmuschaos/go-runner:ci"
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- -c - -c
@@ -182,6 +193,10 @@ spec:
- name: SEQUENCE - name: SEQUENCE
value: 'parallel' value: 'parallel'
# Provide the path of aws credentials mounted from secret
- name: AWS_SHARED_CREDENTIALS_FILE
value: '/tmp/cloud_config.yml'
# percentage of total instance to target # percentage of total instance to target
- name: INSTANCE_AFFECTED_PERC - name: INSTANCE_AFFECTED_PERC
value: '' value: ''
@@ -218,9 +233,9 @@ spec:
- name: MEMORY_PERCENTAGE - name: MEMORY_PERCENTAGE
value: '80' value: '80'
# provide the CPU chore to comsume # provide the CPU chores to comsumed
# giving 0 will consume all the available cpu cores # 0 will consume all the available cpu cores
- name: CPU - name: CPU_CORE
value: '0' value: '0'
# provide the LIB # provide the LIB
@@ -236,3 +251,5 @@ spec:
secrets: secrets:
- name: cloud-secret - name: cloud-secret
mountPath: /tmp/ mountPath: /tmp/
---