Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 990 Bytes

build_own_image-README.md

File metadata and controls

13 lines (10 loc) · 990 Bytes

Building your own Kraken image

  1. Git clone the Kraken repository using git clone https://github.com/redhat-chaos/krkn.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.

Building the Kraken image on IBM Power (ppc64le)

  1. Git clone the Kraken repository using git clone https://github.com/redhat-chaos/krkn.git on an IBM Power Systems server.
  2. Modify the python code and yaml files to address your needs.
  3. Execute podman build -t <new_image_name>:latest -f Dockerfile-ppc64le in the containers directory within kraken to build an image from the Dockerfile for Power.
  4. Execute podman run --detach --name <container_name> <new_image_name>:latest to start a container based on your new image.