Chapter 6. Known issues


This section lists known issues in Red Hat Developer Hub 1.10.

RHDH 1.10.4 installed from Helm chart contains older Orchestrator and Lightspeed builds

RHDH 1.10.4 Helm chart pins a stale catalogIndex.image.tag digest. This does not fail the installation, however, older versions of Orchestrator and Lightspeed plugins are installed without notification from an unsupported location on quay.io.

To work around this problem, patch the index to the current digest:

helm upgrade <release> -n <namespace> oci://quay.io/rhdh/chart --version 1.10.4 \
  --set global.clusterRouterBase=<router-base> \
  --set global.catalogIndex.image.tag=65a60ffc1d7af5539112f686772d08de62bffb3a7888f4a9792940a17a01a632

As a result, all affected plugins resolve from registry.access.redhat.com for the correct latest versions.

RHDH 1.10.4 installed from Operator contains older Orchestrator and Lightspeed builds

RHDH 1.10.4 Operator pins a stale CATALOG_INDEX_IMAGE digest. This does not fail the installation, however, older versions of Orchestrator and Lightspeed plugins are installed without notification from an unsupported location on quay.io.

To work around this problem, patch the install-dynamic-plugins deployment to use the updated index image digest:

oc apply -f - <<'YAML'
apiVersion: rhdh.redhat.com/v1alpha5
kind: Backstage
metadata:
  name: <name>
  namespace: <namespace>
spec:
  application:
    extraEnvs:
      envs:
        - name: CATALOG_INDEX_IMAGE
          value: registry.access.redhat.com/rhdh/plugin-catalog-index@sha256:65a60ffc1d7af5539112f686772d08de62bffb3a7888f4a9792940a17a01a632
          containers:
            - install-dynamic-plugins
YAML

As a result, all affected plugins resolve from registry.access.redhat.com for the correct latest versions.

RHDHBUGS-3720

OCI images from registry.access.redhat.com fail to auto-detect plugin paths

There is a known issue where installing plugins from registry.access.redhat.com without an explicit !path suffix fails silently. The script can’t find the io.backstage.dynamic-packages annotation and returns no plugin paths.

Images on registry.access.redhat.com are published as multi-arch OCI image indexes. When the script calls skopeo inspect --raw to read the manifest annotations, it gets the image index back, not the platform-specific manifest that carries the io.backstage.dynamic-packages annotation. This is the cause of the issue.

To work around this problem, use one of the following methods
  • Configuration without a tag: Use the oci artifact reference with a digest, which points to the image inside its index (and therefore includes the correct metadata needed to discover the plugin path).
  • Configuration with a tag: Append the !<plugin-path> suffix as well so that the auto-detection is skipped.

RHDHBUGS-3307

Bulk Import marks repositories as 'already imported' with open PRs

Bulk Import incorrectly marks repositories with open PRs as already imported, causing repositories to disappear from the importable list. The repository is correctly ingested into Catalog once the import pull request is merged.

No known workaround exists.

RHDHBUGS-3001

Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat Documentation

Legal Notice

Theme

© 2026 Red Hat
Back to top