ceph-daemon container image

This container builds a small image with ceph service, kubectl and some other utilities for use in the ceph charts.

Manual build

Ubuntu Xenial

Here are the instructions for building Xenial image:

IMAGE="ceph-daemon"
VERSION=${VERSION:-latest}
DISTRO=${DISTRO:-ubuntu_jammy}
REGISTRY_URI=${REGISTRY_URI:-"openstackhelm/"}
EXTRA_TAG_INFO=${EXTRA_TAG_INFO:-""}
docker build -f ${IMAGE}/Dockerfile.${DISTRO} --network=host -t ${REGISTRY_URI}${IMAGE}:${VERSION}-${DISTRO}${EXTRA_TAG_INFO} ${extra_build_args} ${IMAGE}

Alternatively, this step can be performed by running the script directly:

./ceph-daemon/build.sh