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

Announcing Red Hat Trusted Artifact Signer (RHTAS) Tech Preview

November 15, 2023
Markus Nagel
Related topics:
DevSecOpsSecurity
Related products:
Red Hat Trusted Software Supply Chain

    The Tech Preview of the Red Hat Trusted Artifact Signer (RHTAS) is now available. This cutting- edge, self-managed software artifact signing solution,  part of our Red Hat Trusted Software Supply Chain portfolio , harnesses the power of the open-source Sigstore project to bolster the security of the software supply chain. 

    Get it here: https://red.ht/signed 

    What is it and why should I care?

    In a nutshell, Red Hat Trusted Artifact Signer provides an easy-to-use, enterprise-ready deployment of the Sigstore project.

    But, that does not answer the question.

    In today’s world, the ability to sign artifacts in the Software Supply Chain, such as source code commits, binaries, container images, SBOMs (Software Bills of Material), etc - and verify their integrity and provenance throughout the supply chain (from code commit to production deployment) is not only a matter of self-preservation, but is also becoming a regulatory requirement.

    There is no doubt that the ability to sign and validate artifacts provides a significant improvement to the security posture in any software development endeavor.    

    However, managing private keys is difficult, revoking them in a controlled fashion even more and integrating these in Dev(Sec)Ops pipelines and automation can become a pain.

    Even more so, we’d like the developers to focus on what they do best - develop amazing new features that thrill your customers. Overcomplicated security tools can negatively impact your application delivery speed, forcing developers to spend valuable time with tooling, instead of innovation.

    This is what the Sigstore project and Red Hat Trusted Artifact Signer (RHTAS) is all about: 

    By using the Rekor transparency log for auditability and non-repudiation, along with Fulcio as a certificate authority to issue short-term signing certificates, RHTAS’s keyless signing and verification helps simplify and secure the process for signing content by allowing signers to issue temporary signing keys that can be discarded rather than setting up a full key management infrastructure. Organizations adopting Sigstore/Red Hat Trusted Artifact Signer can meet signing-related criteria for achieving Supply Chain Levels for Software Artifacts (SLSA) compliance and have greater confidence in the security and trustworthiness of their software supply chains.

    Software developers can use Sigstore/RHTAS to sign their software artifacts and verify their authenticity, ensuring that their software has not been tampered with or modified in transit. This helps to protect the integrity of their software and builds trust with their users.

    Platform Engineers/DevSecOps can integrate Sigstore/RHTAS to provide a turnkey security optimized Internal Developer Platform service to their application development teams.

    InfoSec/Security professionals can use Sigstore/RHTAS to identify compromised components, avoid their deployment and thus prevent attacks on their organization's software systems, providing an additional layer of protection against unauthorized access or data breaches.

    Deployment

    Setting up the different components and configuring them correctly may have stopped you from evaluating Sigstore in the past, but with Red Hat Trusted Artifact Signer this has become easy:

    1. In Tech Preview, we provide a simplified install script, with an Operator (for OpenShift) and Ansible Playbooks (for RHEL) coming soon.
    2. To make it easy to test, the install script installs an instance of Red Hat SSO (Keycloak) with a default user and a new realm called sigstore

    You can find the deployment guide here in the Red Hat Customer Portal.

    This deployment encapsulates all the components needed to run Sigstore / Red Hat Trusted Artifact Signer on OpenShift (Ansible Playbook for RHEL coming soon):

    Figure 1: Deployed Components

    As a second step, we have provided a Grafana Dashboard, by which you can monitor your deployment’s service metrics and usage, as well as the number of current log entries in the Rekor Transparency Log and number of Fulcio Certificates issued:

    Figure 2: Grafana Dashboard

    Installing the dashboard is as simple as running the ./tas-grafana-install.sh

    Script, as shown here

    Usage

    As already mentioned, signing a code commit should be as simple as possible for developers - while verification of a commit in a later build stage should be easily integratable into your toolchain of choice:

    Signing a code commit

    After initially setting up your git environment with the endpoints of your new signing and verification infrastructure (RHTAS), signing a code commit is as simple as:

    $ git commit -S -m “Test of a signed commit”

    Yes, really - that’s all there is to it. All the magic happens in the background.

    Verifying a code commit

    Verifying that a code commit has been signed, that the certificate is valid for that given issuer (the committer) and has been recorded in Rekor:

    gitsign verify --certificate-identity=user@example.com --certificate-oidc-issuer=$OIDC_ISSUER_URL HEAD

    Where $OIDC_ISSUER_URL is your OIDC endpoint, in our example the Keycloak / Red Hat SSO realm.

    Signing a container image

    After verification that your code has not been compromised, you probably would like to build a container image, which in turn should also be signed and later verified in following stages of your CI/CD toolchain:

    cosign sign -y --fulcio-url=$FULCIO_URL --rekor-url=$REKOR_URL \ --oidc-issuer=$OIDC_ISSUER_URL IMAGE_NAME

    Verifying a container image

    Before deploying a container image, you probably would want to verify its signature and integrity like so:

    cosign verify --rekor-url=$REKOR_URL \

    --certificate-identity=SIGNING_EMAIL \

    --certificate-oidc-issuer=OIDC_ISSUER \

    IMAGE_NAME


    For an example of how this can be incorporated into your Tekton Pipelines, take a look at this repository 

    https://github.com/securesign/pipelines-demo/ 

    https://github.com/securesign/pipelines-demo/tree/main/00_base_pipelines_manifests 

    https://github.com/securesign/pipelines-demo/tree/main/01_verify_source_code_pipeline 

    https://github.com/securesign/pipelines-demo/tree/main/02_build_and_sign_image 

    and watch this accompanying demonstration.  

    Note: While Tekton (OpenShift Pipelines) has many benefits and provides a Kubernetes-native build and deployment pipeline experience, it is by no means a prerequisite for Red Hat Trusted Artifact Signer. You can integrate RHTAS with your toolchain of choice. 

    Querying the Transparency Log (Rekor)

    To query the transparency log for published signatures and signing events, you can use the rekor-cli or the Rekor UI:

    Rekor CLI:

    1. Query based on log index rekor-cli get --log-index 0 --rekor_server $REKOR_URL --format json | jq
    2. Query based on email to get the UUID rekor-cli search --email jdoe@example.com --rekor_server $REKOR_URL --format json | jq
    3. Use the returned UUID to get the transaction details rekor-cli get --uuid xxxx --rekor_server $REKOR_URL --format json | jq

    Rekor Search Web UI:

    Point your browser to https://search.sigstore.dev/ for the Rekor Web UI. 

    By default, this searches the public Sigstore transparency log - if you want to search your own Rekor transparency log, just open the cog and add your own Rekor instance endpoint (from your $REKOR_URL environment variable).

    Figure 3: Rekor Search WebUI

    Figure 4: Add your own Rekor Endpoint here

    As a final remark, it should be noted that while code commits and container images are the most obvious use cases for a signing and verification, Sigstore / RHTAS is not limited to those. You can sign (and verify) basically everything, from release files, to maven-generated SBOMs, to binaries, etc. 

    So, what do you think? Please let us know your thoughts and ideas.

    To give feedback or inform our engineering team of any technical issues with Trusted Artifact Signer, email us at rhtas-support@redhat.com.

    Last updated: December 12, 2023
    Disclaimer: Please note the content in this blog post has not been thoroughly reviewed by the Red Hat Developer editorial team. Any opinions expressed in this post are the author's own and do not necessarily reflect the policies or positions of Red Hat.

    Recent Posts

    • Every layer counts: Defense in depth for AI agents with Red Hat AI

    • Fun in the RUN instruction: Why container builds with distroless images can surprise you

    • 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

    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.