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

Getting started with Red Hat Connectivity Link on OpenShift

June 12, 2024
Bernard Tison
Related topics:
APIsDevOpsIntegrationKubernetes
Related products:
Red Hat OpenShiftRed Hat Service InterconnectRed Hat Connectivity Link

    Red Hat Connectivity Link is a new offering from Red Hat, which brings a Kubernetes/Red Hat OpenShift native solution for complex application connectivity and API management in hybrid and multi-cloud environments. Connectivity Link is based on the upstream Kuadrant project and was released as a Developer Preview at Red Hat Summit 2024, with the goal of going GA in the fall of 2024.

    In this article, I will demonstrate how to get started with Connectivity Link on Red Hat OpenShift. Connectivity Link is not limited to OpenShift, and can be installed and used on other Kubernetes distributions like EKS. However, the installation is much simpler on OpenShift as the required operators can be installed and managed through the Operator Lifecycle Manager (OLM).

    Prerequisites

    The first prerequisite is a OpenShift cluster running on AWS. An excellent article on how to install a single-node OpenShift on AWS was recently published on Red Hat Developer. Note that a GPU is not required for Connectivity Link, so a general-purpose EC2 instance type with 32 or 64GB of RAM is sufficient for the getting started experience. If you prefer to install OpenShift on bare metal or a virtualized environment, you can refer to this article.

    The second prerequisite is access to a DNS domain (called a hosted zone in AWS Route53), different from the domain used for the OpenShift cluster. 

    If you followed the instructions to install a single node OpenShift on AWS, the OpenShift cluster will use subdomains of your AWS top domain (typically api.<AWS top domain> for the cluster API server, and *.apps.<AWS top domain> for the applications running on the OpenShift cluster). 

    In AWS Route53 you can add another hosted zone as a subdomain (for example, managed.<AWS top domain>) for the applications that you want to manage and secure with Connectivity Link. Refer to the the AWS documentation on Route53 for instructions on how to setup the hosted zone. You will have to create NS records in the top domain hosted zone in order to be able to route traffic to the subdomain, as explained in this article. 

    If you are using a bare metal or virtualized OpenShift instance, you will need access to a hosted zone on AWS Route53 to use the DNS routing functionalities provided by Connectivity Link.

    Install Connectivity Link

    For the installation of Connectivity Link on Red Hat OpenShift, you can follow the steps as outlined in the upstream Kuadrant documentation, with some minor differences.

    The rate limiting functionality provided by Connectivity Link can use a shared Redis instance to provide global rate limiting counters in a multi-cluster environment. However, if you are getting started with only one cluster, the Redis instance is optional (counters will be stored in memory). This simplifies the setup. In that case, you don't need to create a secret for the Redis credentials, and you can omit the Redis configuration in the Kuadrant Custom Resource:

    apiVersion: kuadrant.io/v1beta1
    kind: Kuadrant
    metadata:
      name: kuadrant
      namespace: kuadrant-system
    spec: {}

    Secure, protect, and connect APIs with Connectivity Link

    Once you have installed the Connectivity Link operators, you can proceed with the instructions in the Secure, protect, and connect APIs with Kuadrant on OpenShift section of the upstream documentation.

    We can make a distinction between the platform engineering workflow and the application developer/owner workflow. In this scenario, the platform engineer sets up the cluster-wide resources like the ingress Gateway, global auth policy and rate limiting, and observability stack, while the application developer/owner would create application specific resources such as an HTTPRoute for the application and application specific auth policy and rate limiting.

    When following the instructions in the upstream documentation, take note of the following points:

    • The managed zone corresponds to the hosted zone that you created for Connectivity Link (ex: managed.<AWS top domain>). The ID of the hosted zone can be obtained from the AWS Route53 console. The rootdomain environment variable should be set to the domain name of the hosted zone used for Connectivity Link.
    • If your OpenShift cluster is installed on AWS, you can use Let's Encrypt as TLS certificate provider. The example given in the documentation uses the staging environment of Let's Encrypt. If your cluster is installed on bare metal or a virtual machine, you can use self-signed certificates provided by the cert manager operator installed as part of the Connectivity Link installation. In this case the TLS issuer should look like:

      apiVersion: cert-manager.io/v1
      kind: ClusterIssuer
      metadata:
        name: kuadrant-ca
      spec:
        selfSigned: {}
    • The upstream documentation for Connectivity Link on OpenShift shows how HTTPRoute and AuthPolicy Custom Resources can be created by using Kuadrant specific extensions in an OpenAPI spec document. As an alternative, you can also create the Custom Resources directly, without using the kuadrantctl CLI. You will find examples of these Custom Resources here and here.

    Where to go from here

    At this point, you have installed Red Hat Connectivity Link on a single OpenShift cluster, and onboarded an application to be managed, secured and protected with Connectivity Link. As a suggested next step, you could, for instance, repeat the setup on a second cluster and experiment with geo-based routing.

    If you want to dig deeper into concepts and architecture of Connectivity Link, the upstream documentation goes into great detail about these topics. 

    Related Posts

    • How to install single node OpenShift on AWS

    • Using Kuadrant Gateway API policies with Gatekeeper policies

    • Packaging APIs for consumers with Red Hat 3scale API Management

    • Integration of API management details (Part 4)

    • Deploying Kubernetes Operators with Operator Lifecycle Manager bundles

    • How to debug OpenShift operators on a live cluster using dlv

    Recent Posts

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    • Preventing GPU waste: A guide to JIT checkpointing with Kubeflow Trainer on OpenShift AI

    • How to manage TLS certificates used by OpenShift GitOps operator

    What’s up next?

    Operators make it easier to automate the lifecycle of complex, stateful programs by adding application-specific skills to a Kubernetes cluster. Read Kubernetes Operators for realistic examples that show you how Operators work and how to build them with the Operator Framework and SDK.

    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.