Chapter 1. Log in to Podman and download the installer image


Use this procedure to authenticate to registry.redhat.io, download the Red Hat Advanced Developer Suite - software supply chain (RHADS - SSC) installer image, and start the installer container. The installer CLI (tssc) runs inside this container and automates the deployment and integration of RHADS - SSC components.

This step ensures that your environment is securely configured before you begin the installation.

Prerequisites

  • A container management tool on your workstation, such as Podman or Docker
  • Valid credentials for accessing registry.redhat.io

Procedure

  1. Log in to the Red Hat registry:

    $ podman login registry.redhat.io
    Copy to Clipboard Toggle word wrap
  2. Download the RHADS - SSC installer image:

    $ podman pull registry.redhat.io/rhtap-cli/rhtap-cli-rhel9:1.6.0
    Copy to Clipboard Toggle word wrap
  3. Start the installer container:

    $ podman run \
      -it \
      --entrypoint bash \ 
    1
    
      --publish 8228:8228 \ 
    2
    
      --rm \
      rhtap-cli-rhel9:1.6.0 
    3
    Copy to Clipboard Toggle word wrap
    1
    Opens the container with an interactive Bash shell.
    2
    Exposes port 8228, which is required for GitHub App creation during the integration process.
    3
    Specifies the RHADS - SSC installer image you pulled in the previous step.
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

© 2026 Red Hat
Back to top