Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Integrate Azure DevOps into Red Hat Developer Hub workflows

A unified developer experience

August 22, 2025
Sumiran Chugh Zheng Wang (George)
Related topics:
Application modernizationCI/CDDeveloper productivityDevOpsGitOps
Related products:
Red Hat Developer Hub

    Integrating Azure DevOps with Red Hat Developer Hub brings together two powerful platforms to create a seamless, end-to-end CI/CD experience. Azure DevOps offers robust capabilities for source control, build automation, and deployment. Meanwhile, Red Hat Developer Hub serves as a centralized developer portal for managing tools, services, documentation, and templates. When combined, teams benefit from improved collaboration, faster delivery, and increased visibility across the entire development lifecycle.

    Supported Azure DevOps plug-ins

    Red Hat Developer Hub includes several Azure DevOps plug-ins:

    • Azure Scaffolder plug-in
    • Azure DevOps plug-in
    • Azure DevOps Backend plug-in

    In this guide, we’ll walk through the steps to integrate these plug-ins with Red Hat Developer Hub. We'll also use Microsoft Entra ID (formerly Azure AD) for authentication, which requires the msgraph plug-in for secure identity management.

    All 4 of these plug-ins are in Technology Preview as of the documentation's creation date, which corresponds to the Red Hat Developer Hub 1.5 release.

    Prerequisites

    Before we begin, ensure that you have:

    • Set up Azure Entra ID.
    • Configured Azure DevOps.
    • Satisfied the platform requirements. Red Hat Developer Hub can run on any AWS KMS External Key Store (XKS) or Red Hat Enterprise Linux system. For this demo, we’ll use Red Hat OpenShift 4.18.

    We will walk through a summary of the steps to set up Azure Entra ID and configure Azure DevOps.

    Azure Entra ID setup

    Refer to the official documentation for comprehensive details. We'll summarize the required steps:

    1. Register a web application with a client secret (Figure 1).
    Screenshot of the Microsoft Azure page showing a user registering web application.
    Figure 1: Register web application on Azure.
    1. Set the redirect URI to https://<rhdh-host>/api/auth/microsoft/handler/frame, as shown in Figure 2.
    Configure redirect URI on web application on Azure.
    Figure 2: Configure the redirect URI on web application on Azure.
    1. Set the required API permissions:

      • email
      • offline_access
      • openid
      • profile
      • User.Read

      Figure 3 shows an example.

    Configure scope on web application on Azure.
    Figure 3: Configure scope on web application on Azure.

    Azure DevOps configuration

    1. Create an Azure DevOps organization, as shown in Figure 4.
    Create Azure DevOps organization.
    Figure 4: Create Azure DevOps organization.
    1. Add your Entra ID service principal under Org Settings > Users. See Figure 5.
    Add Entra ID service principal to organization settings users.
    Figure 5: Add Entra ID service principal to organization settings users.
    1. Ensure your pipeline agent pool (Azure or self-hosted) is available and running Docker (Figure 6).
    Use self hosted pipeline agent with Docker.
    Figure 6: Use self hosted pipeline agent with Docker.
    1. Set up a service connection under Project > Pipelines > Service Connections to your image registry. In this example, we used quay.io. See Figure 7.
    Add pipeline service connection to registry.
    Figure 7: Add pipeline service connection to registry.

    Install Red Hat Developer Hub with Azure plug-ins

    For Azure DevOps configuration, refer to the upstream documentation. For Azure SSO configuration, consult the upstream documentation. Then follow these steps:

    1. Update the dynamic-plugins section of your configuration to enable Azure-related plug-ins:
    dynamic:
      plugins:
        - package: ./dynamic-plugins/dist/backstage-plugin-catalog-backend-module-msgraph-dynamic
          disabled: false
        - package: ./dynamic-plugins/dist/backstage-plugin-scaffolder-backend-module-azure-dynamic
          disabled: false
        - package: ./dynamic-plugins/dist/backstage-community-plugin-azure-devops
          disabled: false
        - package: ./dynamic-plugins/dist/backstage-community-plugin-azure-devops-backend-dynamic
          disabled: false
    1. If using Entra ID authentication, add your client ID, secret, and tenant ID to the auth configuration:
    auth:
      environment: production
      providers:
        microsoft:
          production:
            clientId: ${CLIENT_ID}
            clientSecret: ${CLIENT_SECRET}
            tenantId: ${TENANT_ID}
    1. To import users and groups from Entra ID:
    catalog:
      providers:
        microsoftGraphOrg:
          providerId:
            clientId: ${CLIENT_ID}
            clientSecret: ${CLIENT_SECRET}
            tenantId: ${TENANT_ID}
            userGroupMember:
              search: '"displayName:team a" OR "displayName:teamb"'
            schedule:
              frequency: PT1M
              timeout: PT50M
    1. Add a sample Azure DevOps template under catalog:
    catalog:
      locations:
        - target: ${TEMPLATE_URL}      
          type: url
          rules:
            - allow: [Template]

    This template URL should link to a file. Alternatively, the template can be imported via the web UI (Figure 8).

    RHDH software templates.
    Figure 8: Red Hat Developer Hub Software Templates.
    1. Configure the Azure DevOps back-end provider with the organization, project, and repository used for Azure DevOps:
    catalog:
      providers:
        azureDevOps:
          yourProviderId:
            organization: ${AZURE_DEVOPS_ORG}
            project: '*'
            repository: '*'
            path: /catalog-info.yaml
            schedule:
              frequency: { minutes: 30 }
              timeout: { minutes: 3 }
    1. Specify Azure DevOps credentials:
    integrations:
      azure:
        - host: dev.azure.com
          credentials:
            - clientId: ${CLIENT_ID}
              clientSecret: ${CLIENT_SECRET}
              tenantId: ${TENANT_ID}

    This is what the overall configuration looks like:

    app:
      baseUrl: ${RHDH_HOST}
    backend:
      auth:
        externalAccess:
        - options:
            secret: ${BACKEND_SECRET}
            subject: legacy-default-config
          type: legacy
      baseUrl: ${RHDH_HOST}
      cors:
        origin: ${RHDH_HOST}
    auth:
      environment: production
      providers:
        microsoft:
          production:
            clientId: ${CLIENT_ID}
            clientSecret: ${CLIENT_SECRET}
            tenantId: ${TENANT_ID}
    signInPage: microsoft
    catalog:
      rules:
      - allow: [Component, System, API, Resource, Location, Template, Group, User]
      locations:
      - target: 
    https://github.com/suchugh/red-hat-developer-hub-software-templates/blob/main/templates/azure/dotnet-frontend/template.yaml
        type: url
        rules:
          - allow: [Template]   
      providers:      
        microsoftGraphOrg:
          providerId:
            clientId: ${CLIENT_ID}
            clientSecret: ${CLIENT_SECRET}
            tenantId: ${TENANT_ID}
            userGroupMember:
              search: '"displayName:team a" OR "displayName:teamb"'
            schedule:
              frequency: PT1M
              timeout: PT50M
        azureDevOps:
          yourProviderId: # identifies your dataset / provider independent of config changes
            organization: ${AZURE_DEVOPS_ORG}
            project: '*'
            repository: '*' # this will match all repos 
            path: /catalog-info.yaml
            schedule: # optional; same options as in TaskScheduleDefinition
              # supports cron, ISO duration, "human duration" as used in code
              frequency: { minutes: 30 }
              # supports ISO duration, "human duration" as used in code
              timeout: { minutes: 3 }      
    integrations:
      azure:
        - host: dev.azure.com
          credentials:
            - clientId: ${CLIENT_ID}
              clientSecret: ${CLIENT_SECRET}
              tenantId: ${TENANT_ID}
              # organizations:
              #   - \$AZURE_DEVOPS_ORG
    permission:
      enabled: false
    enabled:
      azure: true
      azureDevOps: true
      microsoftGraphOrg: true
      microsoft: true
      permission: false

    In the following video, you can see the template is imported into Developer Hub.

    Launching the template

    Launch the template by initiating it with parameters. The following video shows the .NET template execution after it's successfully imported into Red Hat Developer Hub.

    After you launch the application template via Developer Hub, import azure-pipelines.yml from the Azure Git repository created by the template. Then, run the Azure pipeline from your application repository. Note the imageRepository where the image will be published:

    trigger:
      - main
    resources:
      - repo: self
    variables:
      tag: "azure-devops-demo-$(Build.BuildId),azure-devops-demo-latest"
      imageRepository: "suchugh/azureado"
      dockerRegistryServiceConnection: "quay.io"
    stages:
      - stage: Build
        displayName: Build image
        jobs:
          - job: Build
            pool:
              name: Default
            steps:
              - task: DockerInstaller@0
                inputs:
                  dockerVersion: '28.0.4'
              - task: Docker@2
                displayName: Build and push image
                inputs:
                  command: buildAndPush
                  repository: $(imageRepository)
                  containerRegistry: $(dockerRegistryServiceConnection)
                  dockerfile: "$(Build.SourcesDirectory)/Dockerfile"
                  tags: |
                    $(tag)

    The following video depicts creating a pipeline for the sample .NET application in Azure Pipelines using a locally running agent. This will be reflected in Developer Hub after the application is imported into the catalog.

    Logging into the Developer Hub console, you can see the pipeline in action. After a successful execution of Azure Pipelines for the sample application, you can view the details of the applications from within the Developer Hub catalog, as depicted in the following video.

    Final thoughts

    With this setup (Figure 9), you can:

    • Scaffold new projects using Developer Hub templates.
    • Authenticate users with Entra ID.
    • Automate builds and deployments using Azure DevOps.
    Overall architecture.
    Figure 9: Overall architecture.

    This integration showcases how Red Hat Developer Hub and Azure DevOps together enhance developer productivity, enabling fast, consistent, and scalable CI/CD workflows.

    Have questions or want to see this in action? Feel free to reach out!

    Related Posts

    • Red Hat Developer Hub: Your gateway to seamless development

    • Achieve more with less using Red Hat Developer Hub's self-service features

    • Building virtual machines with Red Hat Developer Hub: The what, why, and how

    • How to template AI software in Red Hat Developer Hub

    • LLMs and Red Hat Developer Hub: How to catalog AI assets

    • Secure JBoss EAP apps with Microsoft Entra ID & OpenID Connect

    Recent Posts

    • Trusted software factory: Building trust in the agentic AI era

    • Build a zero trust AI pipeline with OpenShift and RHEL CVMs

    • Red Hat Hardened Images: Top 5 benefits for software developers

    • How EvalHub manages two-layer Kubernetes control planes

    • Tekton joins the CNCF as an incubating project

    What’s up next?

    Writing “Hello, World” hasn’t gotten any harder—but running it has. Download our developer’s guide to developer portals to learn how engineering teams can reduce friction and boost productivity using internal developer portals (IDPs).

    Get the e-book
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.