1071: version upgraded for chaos-charts

This commit is contained in:
Travis CI
2020-07-03 15:02:31 +00:00
parent f41e0d5ff2
commit 1965bf5e41
16 changed files with 72 additions and 75 deletions

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: cassandra-pod-delete name: cassandra-pod-delete
version: 0.1.3 version: 0.1.4
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -7,7 +7,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: cassandra-pod-delete name: cassandra-pod-delete
version: 0.1.3 version: 0.1.4
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -4,7 +4,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: container-kill name: container-kill
version: 0.1.20 version: 0.1.21
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: disk-fill name: disk-fill
version: 0.1.12 version: 0.1.13
spec: spec:
definition: definition:
scope: Cluster scope: Cluster

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: disk-loss name: disk-loss
version: 0.1.13 version: 0.1.14
spec: spec:
definition: definition:
scope: Cluster scope: Cluster

View File

@@ -8,7 +8,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: node-drain name: node-drain
version: 0.1.11 version: 0.1.12
spec: spec:
definition: definition:
scope: Cluster scope: Cluster
@@ -68,7 +68,7 @@ spec:
- name: LIB - name: LIB
value: 'litmus' value: 'litmus'
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -87,7 +87,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: disk-fill name: disk-fill
version: 0.1.12 version: 0.1.13
spec: spec:
definition: definition:
scope: Cluster scope: Cluster
@@ -134,7 +134,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '60' value: '60'
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -160,7 +160,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-cpu-hog name: pod-cpu-hog
version: 0.1.10 version: 0.1.11
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced
@@ -184,40 +184,41 @@ spec:
- "patch" - "patch"
- "update" - "update"
- "delete" - "delete"
image: "litmuschaos/ansible-runner:latest" image: "litmuschaos/go-runner:latest"
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- -c - -c
- ansible-playbook ./experiments/generic/pod_cpu_hog/pod_cpu_hog_ansible_logic.yml -i /etc/ansible/hosts -vv; exit 0 - ./experiments/pod-cpu-hog
command: command:
- /bin/bash - /bin/bash
env: env:
- name: ANSIBLE_STDOUT_CALLBACK - name: TOTAL_CHAOS_DURATION
value: 'default' value: '30'
- name: TARGET_CONTAINER - name: CHAOS_INTERVAL
value: '' value: '10'
## Number of CPU cores to stress
- name: CPU_CORES - name: CPU_CORES
value: '1' value: '1'
- name: TOTAL_CHAOS_DURATION ## Percentage of total pods to target
value: '60' # in seconds - name: PODS_AFFECTED_PERC
value: ''
# Period to wait before injection of chaos in sec ## Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
- name: LIB - name: LIB
value: 'litmus' value: 'litmus'
- name: LIB_IMAGE
value: 'litmuschaos/app-cpu-stress:latest'
labels: labels:
name: pod-cpu-hog name: pod-cpu-hog
--- ---
---
apiVersion: litmuschaos.io/v1alpha1 apiVersion: litmuschaos.io/v1alpha1
description: description:
message: | message: |
@@ -225,7 +226,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-memory-hog name: pod-memory-hog
version: 0.1.2 version: 0.1.3
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced
@@ -249,42 +250,38 @@ spec:
- "patch" - "patch"
- "update" - "update"
- "delete" - "delete"
image: "litmuschaos/ansible-runner:latest" image: "litmuschaos/go-runner:latest"
imagePullPolicy: Always
args: args:
- -c - -c
- ansible-playbook ./experiments/generic/pod_memory_hog/pod_memory_hog_ansible_logic.yml -i /etc/ansible/hosts -vv; exit 0 - ./experiments/pod-memory-hog
command: command:
- /bin/bash - /bin/bash
env: env:
- name: ANSIBLE_STDOUT_CALLBACK - name: TOTAL_CHAOS_DURATION
value: 'default' value: '30'
# Provide name of target container - name: CHAOS_INTERVAL
# where chaos has to be injected value: '10'
- name: TARGET_CONTAINER
value: ''
# Enter the amount of memory in megabytes to be consumed by the application pod ## enter the amount of memory in megabytes to be consumed by the application pod
# default: 500 (Megabytes) - name: MEMORY_CONSUMPTION
- name: MEMORY_CONSUMPTION value: '500'
value: '500'
- name: TOTAL_CHAOS_DURATION ## percentage of total pods to target
value: '60' # in seconds - name: PODS_AFFECTED_PERC
value: ''
# 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
value: '' value: ''
- name: LIB ## env var that describes the library used to execute the chaos
value: 'litmus' ## default: litmus. Supported values: litmus, powerfulseal, chaoskube
- name: LIB
value: 'litmus'
- name: LIB_IMAGE
value: 'litmuschaos/app-memory-stress:latest'
labels: labels:
name: pod-memory-hog name: pod-memory-hog
--- ---
apiVersion: litmuschaos.io/v1alpha1 apiVersion: litmuschaos.io/v1alpha1
@@ -294,7 +291,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-network-corruption name: pod-network-corruption
version: 0.1.9 version: 0.1.10
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced
@@ -345,7 +342,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '60' # in seconds value: '60' # in seconds
# Time period to wait before injection of chaos in sec # Time period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -363,7 +360,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-delete name: pod-delete
version: 0.1.17 version: 0.1.18
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced
@@ -409,7 +406,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '15' value: '15'
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -440,7 +437,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-network-loss name: pod-network-loss
version: 0.1.14 version: 0.1.15
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced
@@ -491,7 +488,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '60' # in seconds value: '60' # in seconds
# ime period to wait before injection of chaos in sec # ime period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -509,7 +506,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: disk-loss name: disk-loss
version: 0.1.13 version: 0.1.14
spec: spec:
definition: definition:
scope: Cluster scope: Cluster
@@ -548,7 +545,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '15' value: '15'
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -594,7 +591,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-network-latency name: pod-network-latency
version: 0.1.14 version: 0.1.15
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced
@@ -645,7 +642,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '60' # in seconds value: '60' # in seconds
# Time period to wait before injection of chaos in sec # Time period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -663,7 +660,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: node-cpu-hog name: node-cpu-hog
version: 0.1.18 version: 0.1.19
spec: spec:
definition: definition:
scope: Cluster scope: Cluster
@@ -710,7 +707,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '60' value: '60'
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -740,7 +737,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: kubelet-service-kill name: kubelet-service-kill
version: 0.1.1 version: 0.1.2
spec: spec:
definition: definition:
scope: Cluster scope: Cluster
@@ -786,7 +783,7 @@ spec:
- name: TOTAL_CHAOS_DURATION - name: TOTAL_CHAOS_DURATION
value: '90' # in seconds value: '90' # in seconds
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -804,7 +801,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: node-memory-hog name: node-memory-hog
version: 0.1.8 version: 0.1.9
spec: spec:
definition: definition:
scope: Cluster scope: Cluster
@@ -856,7 +853,7 @@ spec:
- name: MEMORY_PERCENTAGE - name: MEMORY_PERCENTAGE
value: '90' value: '90'
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''
@@ -880,7 +877,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: container-kill name: container-kill
version: 0.1.20 version: 0.1.21
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced
@@ -921,7 +918,7 @@ spec:
- name: TARGET_CONTAINER - name: TARGET_CONTAINER
value: '' value: ''
# Period to wait before injection of chaos in sec # Period to wait before and after injection of chaos in sec
- name: RAMP_TIME - name: RAMP_TIME
value: '' value: ''

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: kubelet-service-kill name: kubelet-service-kill
version: 0.1.1 version: 0.1.2
spec: spec:
definition: definition:
scope: Cluster scope: Cluster

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: node-cpu-hog name: node-cpu-hog
version: 0.1.18 version: 0.1.19
spec: spec:
definition: definition:
scope: Cluster scope: Cluster

View File

@@ -6,7 +6,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: node-drain name: node-drain
version: 0.1.11 version: 0.1.12
spec: spec:
definition: definition:
scope: Cluster scope: Cluster

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: node-memory-hog name: node-memory-hog
version: 0.1.8 version: 0.1.9
spec: spec:
definition: definition:
scope: Cluster scope: Cluster

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-cpu-hog name: pod-cpu-hog
version: 0.1.10 version: 0.1.11
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-delete name: pod-delete
version: 0.1.17 version: 0.1.18
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -6,7 +6,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-memory-hog name: pod-memory-hog
version: 0.1.2 version: 0.1.3
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-network-corruption name: pod-network-corruption
version: 0.1.9 version: 0.1.10
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-network-latency name: pod-network-latency
version: 0.1.14 version: 0.1.15
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced

View File

@@ -5,7 +5,7 @@ description:
kind: ChaosExperiment kind: ChaosExperiment
metadata: metadata:
name: pod-network-loss name: pod-network-loss
version: 0.1.14 version: 0.1.15
spec: spec:
definition: definition:
scope: Namespaced scope: Namespaced