Extended version of Chaos Toolkit Kubernetes support
Project description
This is extended version of Chaos Toolkit Kubernetes Support
Created to provide more flexibility with experiments
This project contains activities, such as probes and actions, you can call from your experiment through the Chaos Toolkit.
Install
To be used from your experiment, this package must be installed in the Python environment where chaostoolkit already lives.
$ pip install chaostoolkit-k8s-wix
Usage
To use the probes and actions from this package, add the following to your experiment file:
{
"name": "all-our-microservices-should-be-healthy",
"provider": {
"type": "python",
"module": chaosk8s_wix,
"func": "microservice_available_and_healthy",
"arguments": {
"name": "myapp",
"ns": "myns"
}
}
},
{
"type": "action",
"name": "terminate-db-pod",
"provider": {
"type": "python",
"module": chaosk8s_wix,
"func": "terminate_pods",
"arguments": {
"label_selector": "app=my-app",
"name_pattern": "my-app-[0-9]$",
"rand": true,
"ns": "default"
}
},
"pauses": {
"after": 5
}
}
That's it! Notice how the action gives you the way to kill one pod randomly.
Please explore the code to see existing probes and actions.
Discovery
You may use the Chaos Toolkit to discover the capabilities of this extension:
$ chaos discover chaostoolkit-k8s-wix --no-install
Configuration
This extension to the Chaos Toolkit can use the Kubernetes configuration
found at the usual place in your HOME directory under ~/.kube/
, or, when
run from a Pod in a Kubernetes cluster, it will use the local service account.
In that case, make sure to set the CHAOSTOOLKIT_IN_POD
environment variable
to "true"
.
You can also pass the credentials via secrets as follows:
{
"secrets": {
"kubernetes": {
"KUBERNETES_HOST": "http://somehost",
"KUBERNETES_API_KEY": {
"type": "env",
"key": "SOME_ENV_VAR"
}
}
}
}
Then in your probe or action:
{
"name": "all-our-microservices-should-be-healthy",
"provider": {
"type": "python",
"module": chaosk8s_wix,
"func": "microservice_available_and_healthy",
"secrets": ["kubernetes"],
"arguments": {
"name": "myapp",
"ns": "myns"
}
}
}
You may specify the Kubernetes context you want to use as follows:
{
"secrets": {
"kubernetes": {
"KUBERNETES_CONTEXT": "minikube"
}
}
}
Or via the environment:
$ export KUBERNETES_CONTEXT=minikube
In the same spirit, you can specify where to find your Kubernetes configuration with:
$ export KUBECONFIG=some/path/config
Contribute
If you wish to contribute more functions to this package, you are more than welcome to do so. Please fork this project, make your changes following the usual PEP 8 code style, add appropriate tests and submit a PR for review.
The Chaos Toolkit projects require all contributors must sign a Developer Certificate of Origin on each commit they would like to merge into the master branch of the repository. Please, make sure you can abide by the rules of the DCO before submitting a PR.
Develop
If you wish to develop on this project, make sure to install the development dependencies. But first, create a virtual environment and then install those dependencies.
$ pip install -r requirements-dev.txt -r requirements.txt
Then, point your environment to this directory:
$ python setup.py develop
Now, you can edit the files and they will be automatically be seen by your
environment, even when running from the chaos
command locally.
Test
To run the tests for the project execute the following:
$ pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file chaostoolkit-k8s-wix-1.4.8.tar.gz
.
File metadata
- Download URL: chaostoolkit-k8s-wix-1.4.8.tar.gz
- Upload date:
- Size: 31.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ae0720976be55277ebd3f86df6d804da66120a9e1eef87ad337914a9b749e82 |
|
MD5 | 80a1ceaf626bf99265a95fbbe913a13f |
|
BLAKE2b-256 | ef2317d7336ace1bfd542f3e44eb6035350a41f4e9c76b465849623eb8c34521 |
File details
Details for the file chaostoolkit_k8s_wix-1.4.8-py3-none-any.whl
.
File metadata
- Download URL: chaostoolkit_k8s_wix-1.4.8-py3-none-any.whl
- Upload date:
- Size: 34.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25d809228091fb2bcd296f6eb5370f291e9932f937aa7de12e40dc5d7ebba70f |
|
MD5 | 95d99c917ec3e91281712da6cb8ae4fd |
|
BLAKE2b-256 | 1dd082dbc85999acfb2e7211f0fa09e81fd8d946d9e8d2b7adec95f71992c7d9 |