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

Set up Red Hat AMQ Streams custom certificates on OpenShift

<p>&nbsp;</p> <quillbot-extension-portal></quillbot-extension-portal>

December 18, 2019
Federico Valeri
Related topics:
Kubernetes
Related products:
Streams for Apache KafkaRed Hat OpenShift Container Platform

    Secure communication over a computer network is one of the most important requirements for a system, and yet it can be difficult to set up correctly. This example shows how to set up Red Hat AMQ Streams' end-to-end TLS encryption using a custom X.509 CA certificate on the Red Hat OpenShift platform.

    Prerequisites

    You need to have the following in place before you can proceed with this example:

    • An OpenShift cluster up and running with at least four CPUs and 5GB of memory.
    • A custom X.509 CA certificate in PEM format (along with its chain).
    • An active Red Hat Customer Portal account.
    • The Red Hat AMQ Streams 1.3.0 Installation and Example package.
    • An OpenShift user with the cluster-admin role.

    The procedure

    Before we start, let's define a few handy variables:

    USER="developer"
    PROJECT="streams"
    CA_USER="system:admin"
    RA_SECRET="reg-auth-secret"
    CLUSTER="my-cluster"
    

    Set up a new project

    The first step after this is to log in as cluster-admin and create a new project to host our clusters. We need this role because we have to install custom resource definitions (CRDs) that are required by the Cluster Operator (CO). We then give full admin rights to the user to let them manage the project once ready:

    $ oc login -u $CA_USER
    $ oc new-project $PROJECT
    $ oc adm policy add-role-to-user admin $USER
    

    To be able to download images from the Red Hat Container Registry, we also need to add an authentication Secret (use your credentials here):

    $ oc create secret docker-registry $RA_SECRET \
          --docker-server=registry.redhat.io \
          --docker-username=<portal-username> \
          --docker-password=<portal-password>
    $ oc secrets link default $RA_SECRET --for=pull
    

    Then, unzip the Installation and Examples distribution package and replace the default project's name with yours:

    TMP="/tmp/$PROJECT" && rm -rf $TMP && mkdir -p $TMP
    $ unzip -qq amq-streams-1.3.0-ocp-install-examples.zip -d $TMP
    $ sed -i -e "s/namespace: .*/namespace: $PROJECT/g" $TMP/install/cluster-operator/*RoleBinding*.yaml
    

    Now, we are ready to install all required CRDs and the Strimzi CO:

    $ oc apply -f $TMP/install/cluster-operator
    $ oc secrets link strimzi-cluster-operator $RA_SECRET --for=pull
    $ oc set env deploy/strimzi-cluster-operator STRIMZI_IMAGE_PULL_SECRETS=$RA_SECRET
    
    $ oc set env deploy/strimzi-cluster-operator STRIMZI_NAMESPACE=$PROJECT
    $ oc apply -f $TMP/install/cluster-operator/020-RoleBinding-strimzi-cluster-operator.yaml
    $ oc apply -f $TMP/install/cluster-operator/032-RoleBinding-strimzi-cluster-operator-topic-operator-delegation.yaml
    $ oc apply -f $TMP/install/cluster-operator/031-RoleBinding-strimzi-cluster-operator-entity-operator-delegation.yaml
    $ oc apply -f $TMP/install/strimzi-admin
    $ oc adm policy add-cluster-role-to-user strimzi-admin $USER
    

    Configure the custom certificate

    After these commands finish, we can configure our custom X.509 CA certificate. I expect that you already have the following files:

    • rootca.pem: The root Certificate Authority (CA) in our domain (optional).
    • intermca.pem: An intermediate CA used to sign the certificate in a specific context (optional).
    • myca.pem: Our custom CA certificate to use with Apache Kafka.
    • myca-prk.pem: The private key for our custom CA certificate.

    All CAs in the chain should be configured as a CA in the X509v3 Basic Constraints. This means that you cannot use a classic non-CA certificate to replace the self-generated certificate (see also additional notes at the end). The reason for this is that it is used to sign certificates for inter-broker communication.

    After printing out your custom certificate you should be able to see this property:

    $ openssl x509 -inform pem -in myca.pem -noout -text
    ...
    X509v3 Basic Constraints: 
        CA:TRUE
    

    When you have a valid CA certificate, create a bundle file like this:

    $ cat myca.pem intermca.pem rootca.pem > bundle.pem
    

    Then, create all required Secrets and labels containing our custom CA. This must be done before creating our custom cluster (next step):

    $ oc create secret generic $CLUSTER-cluster-ca-cert --from-file=ca.crt=bundle.pem
    $ oc label secret $CLUSTER-cluster-ca-cert strimzi.io/kind=Kafka strimzi.io/cluster=$CLUSTER
    
    $ oc create secret generic $CLUSTER-cluster-ca --from-file=ca.key=myca-prk.pem
    $ oc label secret $CLUSTER-cluster-ca strimzi.io/kind=Kafka strimzi.io/cluster=$CLUSTER
    
    $ oc create secret generic $CLUSTER-clients-ca-cert --from-file=ca.crt=bundle.pem
    $ oc label secret $CLUSTER-clients-ca-cert strimzi.io/kind=Kafka strimzi.io/cluster=$CLUSTER
    
    $ oc create secret generic $CLUSTER-clients-ca --from-file=ca.key=myca-prk.pem
    $ oc label secret $CLUSTER-clients-ca strimzi.io/kind=Kafka strimzi.io/cluster=$CLUSTER
    

    Finally, we can deploy our cluster definition. Note how we set generateCertificateAuthority to instruct the CO not to generate the self-signed CA that otherwise would overwrite our previous configuration.

    Example: Ephemeral cluster creation (not for production)

    Here we create a small ephemeral cluster just for the sake of this example. Do not use the exact same setup for production:

    $ oc create -f - <<EOF
    apiVersion: kafka.strimzi.io/v1alpha1
    kind: Kafka
    metadata:
      name: $CLUSTER
    spec:
      kafka:
        version: "2.3.0"
        replicas: 1
        config:
          num.partitions: 1
          default.replication.factor: 1
          log.message.format.version: "2.3"
        clusterCa:
          generateCertificateAuthority: false
        clientsCa:
          generateCertificateAuthority: false
        listeners:
          plain: {}
          tls: {}
          external:
            type: route
        readinessProbe:
          initialDelaySeconds: 30
          timeoutSeconds: 10
        livenessProbe:
          initialDelaySeconds: 30
          timeoutSeconds: 10
        template:
            pod:
              terminationGracePeriodSeconds: 120
        storage:
          type: ephemeral
        resources:
          requests:
            cpu: "1000m"
            memory: "2Gi"
          limits:
            cpu: "1000m"
            memory: "2Gi"
        tlsSidecar:
          resources:
            limits:
              cpu: "100m"
              memory: "128Mi"
            requests:
              cpu: "100m"
              memory: "128Mi"
      zookeeper:
        replicas: 1
        readinessProbe:
          initialDelaySeconds: 15
          timeoutSeconds: 5
        livenessProbe:
          initialDelaySeconds: 15
          timeoutSeconds: 5
        storage:
          type: ephemeral
        resources:
          requests:
            cpu: "500m"
            memory: "1Gi"
          limits:
            cpu: "500m"
            memory: "1Gi"
        tlsSidecar:
          resources:
            limits:
              cpu: "100m"
              memory: "128Mi"
            requests:
              cpu: "100m"
              memory: "128Mi"
      entityOperator:
        topicOperator:
          resources:
            limits:
              cpu: "250m"
              memory: "256Mi"
            requests:
              cpu: "250m"
              memory: "256Mi"
        userOperator:
          resources:
            limits:
              cpu: "250m"
              memory: "256Mi"
            requests:
              cpu: "250m"
              memory: "256Mi"
        tlsSidecar:
          resources:
            limits:
              cpu: "100m"
              memory: "128Mi"
            requests:
              cpu: "100m"
              memory: "128Mi"
    EOF
    

    Once the cluster is up and running, you might want to check that the custom CA is correctly loaded:

    $ oc get pods
    $ oc logs strimzi-cluster-operator-<uuid>
    $ oc logs $CLUSTER-kafka-0 -c kafka
    

    Set up the Java client

    Create and use a truststore in Java KeyStore (JKS) format for one-way TLS authentication:

    $ oc extract secret/$CLUSTER-cluster-ca-cert --keys=ca.crt --to=- > ca.pem
    keytool -import -noprompt -alias root -file ca.pem -keystore truststore.jks -storepass secret
    

    If you want to access Kafka from outside OpenShift, then you also need to use this bootstrap URL:

    $ echo $(oc get routes $CLUSTER-kafka-bootstrap -o=jsonpath='{.status.ingress[0].host}{"\n"}'):443
    

    Additional notes

    We already know that most security teams won't easily release CA certificates. We are working on an enhancement to provide the option to use a non-CA certificate for Kafka listeners, leaving the internal self-generated CA to secure the inter-broker communication.

    Beware that when using a custom CA as explained in this post, you are responsible for the certificate renewals. This process is fully automated when using self-generated certificates. In any case, after the renewal, you will have to recreate the client's truststore as described before.

    Last updated: March 29, 2023

    Recent Posts

    • Testing infrastructure red teaming with abliterated models

    • Build an enterprise RAG system with OGX

    • Solutions for SELinux MCS challenges with GitLab runners

    • MCP servers vs. skills: Choosing the right context for your AI

    • How to route external and local LLMs with Models-as-a-Service

    What’s up next?

     

    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.