Back to Rancher

Developing Rancher

docs/development.md

2.14.0960 B
Original Source

Developing Rancher

Generate a local container image

If you need to test some changes in a container image before they make it to a pull request, you can use the handy make quick script.

This script uses docker buildx in order to enable cross-building of different architecture images. To build an image for your current OS and architecture, run from the Rancher project root:

shell
REPO="localhost:5000/my-test-repo/image" TAG="tag" make quick

If you wish to cross-build for a different architecture, set the variable ARCH:

shell
REPO="localhost:5000/my-test-repo/image" \
  TAG="tag" \
  ARCH="amd64" \
  make quick

Deploy your custom image via Helm

To deploy a custom image via Helm, set the variables rancherImage and rancherImageTag:

shell
helm upgrade --install rancher/rancher \
  --namespace cattle-system \
  --create-namespace \
  --set rancherImage="my-test-repo/image" \
  --set rancherImageTag="dev-tag"