Testing your changes
Categories:
This page gives details about how you can get a kind cluster configured to be able to run on krkn-lib (the lowest level of krkn-chaos repos) up through krkn-hub
Testing Changes in Krkn-lib
Create a kind cluster if needed
Create cluster using kind-config.yml under krkn-lib base folder
kind create cluster --wait 300s --config=kind-config.yml
Elasticsearch and Prometheus
To be able to run the full test suite of tests you need to have elasticsearch and promethues properly configured on the cluster
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add stable https://charts.helm.sh/stable
helm repo update
Prometheus
ElasticSearch
Set enviornment variables of elasticsearch variables
export ELASTIC_URL="https://localhost"
export ELASTIC_PORT="9091"
export ELASTIC_USER="elastic"
export ELASTIC_PASSWORD="test"
Install poetry
Using a virtual enviornment install poetry and install krkn-lib requirmenets
$ pip install poetry
$ poetry install --no-interaction
Run tests
poetry run python3 -m coverage run -a -m unittest discover -v src/krkn_lib/tests/
Adding a New Scenario to Krkn-hub
Install Podman/Docker Compose
You can use either podman-compose or docker-compose for this step
NOTE: Podman might not work on Mac’s
pip3 install docker-compose
OR
To get latest podman-compose features we need, use this installation command
pip3 install https://github.com/containers/podman-compose/archive/devel.tar.gz
Editing a New Scenario to Krkn-hub
Create folder with scenario name
Create generic scenario template with enviornment variables
a. See scenario.yaml for example
b. Almost all parameters should be set using a variable (these will be set in the env.sh file or through the command line environment variables)
Add defaults for any environment variables in an “env.sh” file
a. See env.sh for example
Create script to run.sh chaos scenario a. See run.sh for example
b. edit line 16 with your scenario yaml template
c. edit line 17 and 23 with your yaml config location
Create Dockerfile template
a. See dockerfile for example
b. Lines to edit
i. 15: replace "application-outages" with your folder name ii. 17: replace "application-outages" with your folder name iii. 19: replace "application-outages" with your folder name and config file name
Add service/scenario to docker-compose.yaml file following syntax of other services
Point the dockerfile parameter in your docker-compose to the Dockerfile file in your new folder
Update this doc and main README with new scenario type
Add CI test for new scenario
a. See test_application_outages.sh for example
b. Lines to change
i. 14 and 31: Give a new function name ii. 19: Give it a meaningful container name iii. Edit line 20 to give scenario type defined in docker-compose file
c. Add test name to all_tests file
NOTE:
- If you added any variables or new sections be sure to update config.yaml.template
- Similar to above, also add the default parameter values to env.sh
Build Your Changes
- Run build.sh to get Dockerfiles for each scenario
- Edit the docker-compose.yaml file to point to your quay.io repository (optional)
- Build your image(s) from base krkn-hub directory
Builds all images in docker-compose file
docker-compose build
Builds single image defined by service/scenario name
docker-compose build <scenario_type>
OR
Builds all images in podman-compose file
podman-compose build
Builds single image defined by service/scenario name
podman-compose build <scenario_type>
Push Images to your quay.io
All Images
docker image push --all-tags quay.io/<username>/kraken-hub
Single image
docker image push quay.io/<username>/kraken-hub:<scenario_type>
OR
Single Image (have to go one by one to push images through podman)
podman image push quay.io/<username>/kraken-hub:<scenario_type>
Run your scenario
docker run -d -v <kube_config_path>:/root/.kube/config:Z quay.io/<username>/kraken-hub:<scenario_type>
OR
podman run -d -v <kube_config_path>:/root/.kube/config:Z quay.io/<username>/kraken-hub:<scenario_type>
Follow Contribute guide
Once all you’re happy with your changes, follow the contribution guide on how to create your own branch and squash your commits