Skip to content

Latest commit

 

History

History
59 lines (48 loc) · 1.3 KB

File metadata and controls

59 lines (48 loc) · 1.3 KB

Resolving custom image registry issues

If custom Barbican images cannot be pushed to or pulled from the configured registry, you can verify the authentication, test image push permissions, and then update the configuration as needed.

Example error:

TASK [Create Proteccio-enabled Barbican images] ****
fatal: [localhost]: FAILED! => {
    "msg": "Failed to push image to registry"
}
Procedure
  1. Verify registry authentication:

    $ podman login <registry_url>

    where:

    <registry_url>

    Specifies the URL of your configured registry.

  2. Test image push permissions:

    $ podman tag hello-world <registry>/<namespace>/test:latest
    $ podman push <registry>/<namespace>/test:latest

    where:

    <registry>

    Specifies the name of your registry server.

    <namespace>

    Specifies the namespace of your container image.

  3. If needed, verify that the custom {key_manager} images with Proteccio client libraries are available in the registry:

    $ podman search <registry>/<namespace>/barbican --list-tags

    where:

    <registry>

    Specifies the name of your registry server.

    <namespace>

    Specifies the namespace of your container image.