Files
krkn/containers/build_own_image-README.md
Naga Ravi Chaitanya Elluri 0e852da7d4 Deprecate kubernetes method of deploying Krkn
This will ensure users will use the recommended methods ( standlone or containerized )
of installing and running Krkn.
2023-10-25 12:32:46 -04:00

990 B

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.