ceph-config-helper container image

This container builds a small image with kubectl and some other utilities for use in the ceph charts or interact with a ceph deployment.

If you need to build the image, you can use Dockerfile.ubuntu with the FROM build argument set to your source image. For example:

docker buildx build \
  --build-arg FROM=quay.io/airshipit/ubuntu:jammy \
  -f ceph-config-helper/Dockerfile.ubuntu \
  ceph-config-helper/

You can also use buildx to build the image for multiple architectures:

docker buildx build \
  --build-arg FROM=quay.io/airshipit/ubuntu:jammy \
  -f ceph-config-helper/Dockerfile.ubuntu \
  --platform linux/amd64,linux/arm64 \
  ceph-config-helper/