GHOSTby AlphaBravo
CatalogWhy GhostContactAccount
Ghost Container Registry — Secure, signed, FIPS-ready images·Built by AlphaBravo
Catalog/registration-operator/Guides

registration operator

FIPS 140-3Developer tools

Kubernetes operator for managing Open Cluster Management hub and spoke components.

OverviewGuidesTags

Quick Start

Pull the latest version of this image from the Ghost registry. Pulling requires authentication — generate a token and run docker login first (see Authentication below).

Authentication

The Ghost catalog is public to browse, but pulling images requires an account. Generate a pull token below (or from your Account → Tokens page) — you'll get a ready-to-paste docker login command, then docker pull works.

The username is generated automatically (it looks like robot$<project>+<auto-id>, not the name you typed) and is included in the docker login command above. The secret is shown only once when you create the token.

Verify Signature

All Ghost images are signed with cosign. Verifying the signature before deployment ensures the image has not been tampered with.

Install cosign via brew install cosign or download from the Sigstore releases page.

Using This Image

Reference this image in your Dockerfile as a base layer:

FIPS 140-3 Compliance

This is a vendor-built FIPS-enabled image: its cryptography runs on FIPS 140-3 validated modules configured by the upstream vendor. You can inspect the image metadata:

StandardFIPS 140-3
Crypto moduleVendor-configured validated modules
CryptographyValidated modules only
Use caseGovernment, regulated industries, compliance workloads

Additional Notes

How to use this image

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:

  • Public image: registry.ghost-prod.alphabravo.io/ghost-base/registration-operator:<tag>
  • Mirrored image: <your-namespace>/dhi-registration-operator:<tag>

For the examples, you must first use docker login registry.ghost-prod.alphabravo.io to authenticate to the registry to pull the images.

What's included in this registration-operator image

This Docker Hardened registration-operator image is a component of the Open Cluster Management (OCM) project.

  • The registration-operator binary built from the official OCM releases
  • Symlink at /registration-operator for OCM cluster-manager argv compatibility
  • Default command [/usr/local/bin/registration-operator, hub] for the hub operator deployment

On this page

Quick StartAuthenticationVerify SignatureUsing This ImageFIPS ComplianceAdditional Notes
  • Configuration via command-line flags
  • The registration-operator provides two operators:

    • Cluster Manager (hub subcommand) — installs OCM foundational components on the hub cluster
    • Klusterlet (klusterlet subcommand) — installs agent components on managed clusters

    It is designed to run within a Kubernetes cluster to manage multi-cluster operations.

    Run the registration-operator container

    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 registry.ghost-prod.alphabravo.io/ghost-base/registration-operator:<tag> /usr/local/bin/registration-operator --version
    

    To display help information:

    docker run --rm registry.ghost-prod.alphabravo.io/ghost-base/registration-operator:<tag> /usr/local/bin/registration-operator --help
    

    Deploy in Kubernetes

    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/

    Non-hardened images vs Ghost hardened images

    FeatureNon-hardened (quay.io/open-cluster-management/registration-operator)Docker Hardened (dhi/registration-operator)
    Base imageUBI 9 minimalDebian 13 hardened base
    UserUID 10001Nonroot user (UID 65532)
    EntrypointNo entrypoint configuredNo entrypoint; argv-style default CMD
    Binaries/registration-operator/registration-operator (symlink)
    Shell/utilitiesMinimalNot included (minimal attack surface)
    CVE complianceStandard patchingNear-zero CVEs with proactive remediation
    ProvenanceNot signedSigned with complete SBOM/VEX

    Ghost 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.

    Image variants

    Ghost 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:

      • Run as a nonroot user
      • Do not include a shell or a package manager
      • Contain only the minimal set of libraries needed to run the app
    • 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:

      • Run as the root user
      • Include a shell and package manager
      • Are used to build or compile applications
    • 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.

    Migrate to a Ghost hardened image

    To migrate your application to a Ghost hardened image, you must update your Dockerfile. At minimum, you must update the base image in your existing Dockerfile to a Ghost hardened image. This and a few other common changes are listed in the following table of migration notes.

    ItemMigration note
    Base imageReplace your base images in your Dockerfile with a Ghost hardened image.
    Package managementNon-dev images, intended for runtime, don't contain package managers. Use package managers only in images with a dev tag.
    Nonroot userBy 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 buildUtilize images with a dev tag for build stages and non-dev images for runtime. For binary executables, use a static image for runtime.
    TLS certificatesGhost hardened images contain standard TLS certificates by default. There is no need to install TLS certificates.
    PortsNon-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 pointThe 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 shellBy 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.

    Troubleshooting migration

    General debugging

    The hardened images intended for runtime don't contain a shell nor any tools for debugging. The recommended method for debugging applications built with Ghost 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.

    Permissions

    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.

    Privileged 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.

    No shell

    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.

    Entry point

    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.