Adding build own readme and linking

This commit is contained in:
prubenda
2020-08-11 12:28:20 -04:00
committed by Naga Ravi Chaitanya Elluri
parent 19730f182e
commit 9958a9753b
2 changed files with 8 additions and 0 deletions
+2
View File
@@ -48,6 +48,8 @@ $ podman run --name=kraken --net=host -v <path_to_kubeconfig>:/root/.kube/config
$ podman logs -f kraken
```
If you want to build your own kraken image see [here](https://github.com/openshift-scale/kraken/tree/master/containers/build_own_image-README.md)
#### Report
The report is generated in the run directory and it contains the information about each chaos scenario injection along with timestamps.
+6
View File
@@ -0,0 +1,6 @@
# Building your own Kraken image
1. Git clone the Kraken repository using `git clone https://github.com/openshift-scale/kraken.git`.
2. Modify the python code and yaml files to address your needs.
3. Execute `podman build -t <new_image_name>:latest .` in the containers directory within kraken to build an image from a Dockerfile.
4. Execute `podman run --detach --name <container_name> <new_image_name>:latest` to start a container based on your new image.