dhi.io/registration-operator
Kubernetes operator for managing Open Cluster Management hub and spoke components.
All examples in this guide use the public image. If you've mirrored the repository for your own use (for example, to your Docker Hub namespace), update your commands to reference the mirrored image instead of the public one.
For example:
dhi.io/registration-operator:<tag><your-namespace>/dhi-registration-operator:<tag>For the examples, you must first use docker login dhi.io to authenticate to the registry to pull the images.
This Docker Hardened registration-operator image is a component of the Open Cluster Management (OCM) project.
registration-operator binary built from the official OCM releases/registration-operator for OCM cluster-manager argv compatibility[/usr/local/bin/registration-operator, hub] for the hub operator deploymentThe registration-operator provides two operators:
It is designed to run within a Kubernetes cluster to manage multi-cluster operations.
The registration-operator is designed to run within a Kubernetes cluster. Running it standalone requires Kubernetes API access and proper configuration.
To display version information:
docker run --rm dhi.io/registration-operator:<tag> /usr/local/bin/registration-operator --version
To display help information:
docker run --rm dhi.io/registration-operator:<tag> /usr/local/bin/registration-operator --help
The recommended way to deploy registration-operator is using the OCM Helm chart or the clusteradm CLI.
For detailed deployment instructions, configuration options, and integration guides, refer to the official documentation at https://open-cluster-management.io/
| Feature | Non-hardened (quay.io/open-cluster-management/registration-operator) | Docker Hardened (dhi/registration-operator) |
|---|---|---|
| Base image | UBI 9 minimal | Debian 13 hardened base |
| User | UID 10001 | Nonroot user (UID 65532) |
| Entrypoint | No entrypoint configured | No entrypoint; argv-style default CMD |
| Binaries | /registration-operator | /registration-operator (symlink) |
| Shell/utilities | Minimal | Not included (minimal attack surface) |
| CVE compliance | Standard patching | Near-zero CVEs with proactive remediation |
| Provenance | Not signed | Signed with complete SBOM/VEX |
Docker Hardened Images prioritize security through minimalism. Runtime images don't contain a shell or package manager to reduce attack surface. For debugging, use Docker Debug to attach to containers with ephemeral debugging tools.
Docker Hardened Images come in different variants depending on their intended use. Image variants are identified by their tag.
Runtime variants are designed to run your application in production. These images are intended to be used either
directly or as the FROM image in the final stage of a multi-stage build. These images typically:
Build-time variants typically include dev in the tag name and are intended for use in the first stage of a
multi-stage Dockerfile. These images typically:
FIPS variants include fips in the variant name and tag. They come in both runtime and build-time variants. These
variants use cryptographic modules that have been validated under FIPS 140, a U.S. government standard for secure
cryptographic operations. Note: this image uses FIPS lenient mode (fips140=on) because the upstream
openshift/library-go dependency uses MD5 for resource caching and SHA-1 for certificate generation. These are
non-security uses that cannot be patched without forking the dependency.
To view the image variants and get more information about them, select the Tags tab for this repository, and then select a tag.
To migrate your application to a Docker Hardened Image, you must update your Dockerfile. At minimum, you must update the base image in your existing Dockerfile to a Docker Hardened Image. This and a few other common changes are listed in the following table of migration notes.
| Item | Migration note |
|---|---|
| Base image | Replace your base images in your Dockerfile with a Docker Hardened Image. |
| Package management | Non-dev images, intended for runtime, don't contain package managers. Use package managers only in images with a dev tag. |
| Nonroot user | By default, non-dev images, intended for runtime, run as a nonroot user. Ensure that necessary files and directories are accessible to that user. |
| Multi-stage build | Utilize images with a dev tag for build stages and non-dev images for runtime. For binary executables, use a static image for runtime. |
| TLS certificates | Docker Hardened Images contain standard TLS certificates by default. There is no need to install TLS certificates. |
| Ports | Non-dev hardened images run as a nonroot user by default. As a result, applications in these images can't bind to privileged ports (below 1024) when running in Kubernetes or in Docker Engine versions older than 20.10. To avoid issues, configure your application to listen on port 1025 or higher inside the container. |
| Entry point | The upstream image does not configure an entrypoint and places the binary at /registration-operator. The Docker Hardened image runs /usr/local/bin/registration-operator directly. If you override command or args in Docker or Kubernetes, update those paths and invocation patterns accordingly. |
| No shell | By default, non-dev images, intended for runtime, don't contain a shell. Use dev images in build stages to run shell commands and then copy artifacts to the runtime stage. |
The hardened images intended for runtime don't contain a shell nor any tools for debugging. The recommended method for debugging applications built with Docker Hardened Images is to use Docker Debug to attach to these containers. Docker Debug provides a shell, common debugging tools, and lets you install other tools in an ephemeral, writable layer that only exists during the debugging session.
By default image variants intended for runtime, run as a nonroot user. Ensure that necessary files and directories are accessible to that user. You may need to copy files to different directories or change permissions so your application running as a nonroot user can access them.
Non-dev hardened images run as a nonroot user by default. As a result, applications in these images can't bind to privileged ports (below 1024) when running in Kubernetes or in Docker Engine versions older than 20.10. To avoid issues, configure your application to listen on port 1025 or higher inside the container.
By default, image variants intended for runtime don't contain a shell. Use dev images in build stages to run shell commands and then copy any necessary artifacts into the runtime stage. In addition, use Docker Debug to debug containers with no shell.
The upstream quay.io/open-cluster-management/registration-operator image does not configure an entrypoint and places
the binary at /registration-operator. The Docker Hardened image runs /usr/local/bin/registration-operator directly.
If your existing Dockerfile, Compose file, or Kubernetes manifests override command or args, inspect and update
those settings to match the Docker Hardened image layout.