Skip to content

Containerized wrapper around https://github.com/krkn-chaos/krkn to inject failures into Kubernetes clusters with minimal configuration.

License

Notifications You must be signed in to change notification settings

redhat-chaos/krkn-hub

This branch is 48 commits ahead of, 11 commits behind krkn-chaos/krkn-hub:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3f317d3 · Jan 14, 2025
Oct 24, 2024
Jun 5, 2023
Nov 26, 2024
Jan 23, 2024
Jan 14, 2025
Nov 26, 2024
Jan 14, 2025
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Jan 17, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Nov 26, 2024
Jan 6, 2025
Feb 7, 2023
Nov 3, 2023
Aug 10, 2021
Sep 18, 2024
Oct 24, 2024
Jun 12, 2024
Nov 4, 2024
Nov 20, 2024
Nov 26, 2024
Nov 1, 2021
Nov 23, 2021

Repository files navigation

Krkn-hub aka kraken-hub

Hosts container images and wrapper for running scenarios supported by Krkn, a chaos testing tool for Kubernetes clusters to ensure it is resilient to failures. All we need to do is run the containers with the respective environment variables defined as supported by the scenarios without having to maintain and tweak files!

Supported chaos scenarios

Scenario Description Working
Pod failures Injects pod failures ✔️
Container failures Injects container failures based on the provided kill signal ✔️
Node failures Injects node failure through OpenShift/Kubernetes, cloud API's ✔️
zone outages Creates zone outage to observe the impact on the cluster, applications ✔️
time skew Skews the time and date ✔️
Node cpu hog Hogs CPU on the targeted nodes ✔️
Node memory hog Hogs memory on the targeted nodes ✔️
Node IO hog Hogs io on the targeted nodes ✔️
Service Disruption Deleting all objects within a namespace ✔️
Application outages Isolates application Ingress/Egress traffic to observe the impact on dependent applications and recovery/initialization timing ✔️
Power Outages Shuts down the cluster for the specified duration and turns it back on to check the cluster health ✔️
PVC disk fill Fills up a given PersistenVolumeClaim by creating a temp file on the PVC from a pod associated with it ✔️
Network Chaos Introduces network latency, packet loss, bandwidth restriction in the egress traffic of a Node's interface using tc and Netem ✔️
Pod Network Chaos Introduces network chaos at pod level ✔️
Service Hijacking Hijacks a service http traffic to simulate custom HTTP responses ✔️
SYN Flood Simulates a user-defined surge of TCP SYN requests directed at one or more services ✔️

Utilities

Utility Description Working
Chaos Recommender Runs the chaos recommender ✔️

Set Up

You can use docker or podman to run kraken-hub

Install Podman your certain operating system based on these instructions

or

Install Docker

Docker is also supported but all variables you want to set (separate from the defaults) need to be set at the command line In the form -e <VARIABLE>=<value>

You can take advantage of the get_docker_params.sh script to create your parameters string This will take all environment variables and put them in the form "-e =" to make a long string that can get passed to the command

For example: docker run $(./get_docker_params.sh) --net=host -v <path-to-kube-config>:/home/krkn/.kube/config:Z -d quay.io/redhat-chaos/krkn-hub:power-outages

TIP: Because the container runs with a non-root user, ensure the kube config is globally readable before mounting it in the container. You can achieve this with the following commands: kubectl config view --flatten > ~/kubeconfig && chmod 444 ~/kubeconfig && docker run $(./get_docker_params.sh) --name=<container_name> --net=host -v ~kubeconfig:/home/krkn/.kube/config:Z -d quay.io/krkn-chaos/krkn-hub:<scenario>

Adding New Scenarios/Testing Changes

Refer to the 2 docs below to be able to test your own images with any changes and be able to contribute them to the repository

About

Containerized wrapper around https://github.com/krkn-chaos/krkn to inject failures into Kubernetes clusters with minimal configuration.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 86.6%
  • Python 12.0%
  • Dockerfile 1.4%