Skip to content

Releases: litmuschaos/litmus

0.7.0

14 Oct 13:22
Compare
Choose a tag to compare

Getting Started

Prerequisites to install

  • Make sure you have a healthy Kubernetes Cluster.
  • Kubernetes 1.11+ is installed

What's new?

  • [chaos-operator] [enhancement] Refactored operator code to increase modularity
  • [chaos-operator] [bug-fix] Fix Crashing of Chaos-Executor post-experiment execution
  • [chaos-operator] [feature] Ability to turn on/off monitoring (chaos metrics collection) via ChaosEngine
  • [chaos-operator] [enhancement] Run chaos exporter as a separate pod
  • [chaos-operator] [ci] Increased unit-test coverage
  • [chaos-exporter] [enhancement] Refactored exporter code to increase modularity (BCH standards)
  • [litmus] [enhancement] Ability to patch experiment status to ChaosEngine
  • [litmus] [feature] Ability to override experiment defaults via ChaosEngine spec
  • [litmus] [feature] Add powerfulseal integration (chaoslib) to induce pod chaos
  • [litmus] [feature] Experiments to perform network chaos using Pumba
  • [litmus] [enhancement] Optimized dockerfile for ansible-runner image
  • [chaos-charts] [charts] Additional OpenEBS chaos charts (target failure, pool failure, target network chaos)
  • [chaos-charts] [charts] Additional Generic charts (network chaos)
  • [chaos-charts] [ci] Auto-Versioning of chaos charts
  • [charthub][enhancements] Implementation of filters and sort functionalities on chaos hub
  • [litmus-docs] [enhancements] Restructured docs with simpler user guide & architecture details
  • [litmus-docs] [feature] Updated docs website to use docusaurus version 1.13.0

Installation

kubectl apply -f https://litmuschaos.github.io/pages/litmus-operator-v0.7.0.yaml

Verify your installation

  • Verify if the chaos operator is ru\nning
    kubectl get pods -n litmus

  • Verify if chaos CRDs are installed
    kubectl get crds | grep chaos

  • Verify if the chaos experiments are installed.
    kubectl get chaosexperiments

For more details refer to the documentation at Docs

0.7.0-RC1

11 Oct 12:49
Compare
Choose a tag to compare
0.7.0-RC1 Pre-release
Pre-release

Getting Started

Prerequisites to install

  • Make sure you have a healthy Kubernetes Cluster.
  • Kubernetes 1.11+ is installed

Installation

kubectl apply -f https://litmuschaos.github.io/pages/litmus-operator-latest.yaml

Verify your installation

  • Verify if the chaos operator is running
    kubectl get pods -n litmus

  • Verify if chaos CRDs are installed
    kubectl get crds | grep chaos

  • Verify if the chaos experiments are installed.
    kubectl get chaosexperiments

For more details refer to the documentation at Docs

0.6.0

13 Sep 08:21
f6ed3ee
Compare
Choose a tag to compare

Getting Started

Whats's new

  • Support for KubernetesVersion and OpenEBSVersion in ChaosExporter
  • Added BDD tests for ChaosOperator and ChaosExporter
  • Released Chaos Hub to render chaos charts (OpenEBS and k8s chart)

Prerequisites to install

  • Make sure you have a healthy Kubernetes Cluster.
  • Make sure that you are in the admin context in order to setup RBAC.
  • Make sure you have setup Helm (with Tiller) on your k8s cluster. From installing Tiller, please follow here: https://github.com/litmuschaos/chaos-charts/blob/master/README.md
  • Make sure that you don't have any prior instance of LitmusChaos CRDS like ChaosEngine, ChaosExperiment, ChaosResult, LitmusResult. so that you don't face any failure while installing HELM commands.

Install using kubectl

// Installing RBAC for authorization
kubectl create -f https://raw.githubusercontent.com/litmuschaos/chaos-operator/v0.6/deploy/rbac.yaml

// Installing required CRDS 
kubectl create -f https://raw.githubusercontent.com/litmuschaos/chaos-operator/v0.6/deploy/chaos_crds.yaml

// Deploying chaos operator
kubectl create -f https://raw.githubusercontent.com/litmuschaos/chaos-operator/v0.6/deploy/operator.yaml

OR

Install using Helm Charts

helm repo add litmuschaos https://litmuschaos.github.io/chaos-charts
helm repo update
helm install litmuschaos/litmus --namespace=litmus

For more details refer to the documentation at https://docs.litmuschaos.io