Chapter 3. Deprecated functionalities


This section lists deprecated functionalities in Red Hat Developer Hub 1.3.

spec.application.image, spec.application.replicas and spec.application.imagePullSecrets fields are deprecated in v1alpha2 in favour of spec.deployment.

Procedure

To update your Developer Hub Operation configuration:

  1. Remove the spec.application.image, spec.application.replicas and spec.application.imagePullSecrets fields from the Operator configuration. For example:

    spec:
      application:
        replicas: 2 # <1>
        imagePullSecrets: # <2>
          - my-secret-name
        image: quay.io/my/my-rhdh:latest # <3>
    Copy to Clipboard Toggle word wrap

    <1> Replica count. <2> Array of image pull secrets names. <3> Image name.

  2. Replace the removed fields with new spec.deployment fields. For example:

    spec:
      deployment:
        patch:
          spec:
            replicas: 2 # &lt;1&gt;
            imagePullSecrets: # &lt;2&gt;
              - name: my-secret-name
            template:
              metadata:
                labels:
                  my: true
              spec:
                containers:
                  - name: backstage-backend
                    image: quay.io/my/my-rhdh:latest # &lt;3&gt;
    Copy to Clipboard Toggle word wrap

    <1> Replica count. <2> Array of image pull secrets names. <3> Image name.

Additional resources

Back to top
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

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

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

Theme

© 2025 Red Hat