mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-02-14 18:10:00 +00:00
This will ensure users will use the recommended methods ( standlone or containerized ) of installing and running Krkn.
990 B
990 B
Building your own Kraken image
- Git clone the Kraken repository using
git clone https://github.com/redhat-chaos/krkn.git. - Modify the python code and yaml files to address your needs.
- Execute
podman build -t <new_image_name>:latest .in the containers directory within kraken to build an image from a Dockerfile. - Execute
podman run --detach --name <container_name> <new_image_name>:latestto start a container based on your new image.
Building the Kraken image on IBM Power (ppc64le)
- Git clone the Kraken repository using
git clone https://github.com/redhat-chaos/krkn.giton an IBM Power Systems server. - Modify the python code and yaml files to address your needs.
- Execute
podman build -t <new_image_name>:latest -f Dockerfile-ppc64lein the containers directory within kraken to build an image from the Dockerfile for Power. - Execute
podman run --detach --name <container_name> <new_image_name>:latestto start a container based on your new image.