mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-02-14 09:59:59 +00:00
1000 B
1000 B
Building your own Kraken image
- Git clone the Kraken repository using
git clone https://github.com/openshift-scale/kraken.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/cloud-bulldozer/kraken.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.