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

Connect to services on Kubernetes easily with kube-service-bindings

August 11, 2022
Costas Papastathis Michael Dawson
Related topics:
KubernetesNode.jsOperators
Related products:
Red Hat OpenShift

One of the projects the Node.js team at Red Hat has been focusing on over the past year is the development of kube-service-bindings for Kubernetes. We've found that combining the Service Binding Operator and kube-service-bindings is a convenient and consistent way of sharing credentials for services, letting you easily secure your deployments.

This article is the first of a three-part series. Our goals in the series are to:

  • Introduce Kubernetes service bindings and the Service Binding Operator.
  • Explain how the kube-service-bindings NPM package supports service bindings for Node.js applications.
  • Cover the clients we've added support for in kube-service-bindings.
  • Show an end-to-end deployment of a Node.js application communicating with a database in a Kubernetes setting.

After reading this article and parts two and three of the series, you should have a better understanding of how service bindings and kube-service-bindings work. This first article explains the tools we're using and their benefits for Node.js programmers using Kubernetes.

What are service bindings and the Service Binding Operator?

In our service binding terminology for Kubernetes, a service binding provides information about a service to a process that needs to bind to that service. In subsequent parts of this series, for instance, you will use a service binding to provide the credentials of a MongoDB database when your Node.js application connects to it. The database is called a backing service, while the application is called the workload. The data passed between them is called binding data.

Protocols and rules for sharing information are laid out in the Service Binding Specification for Kubernetes. The Service Binding Operator (SBO) establishes a connection to share the credentials between the workload and backing service. The SBO is implemented by Red Hat and is available in the OpenShift Operator Hub.

The Service Binding Operator has two significant benefits compared to other methods of sharing secrets. The first is security: The SBO requires less exposure of credentials or secrets throughout the CI/CD process. The second benefit is convenience: Rarely is development as easy as dragging a line in a graphical user interface (UI) in the Red Hat OpenShift console.

You can find more information on how the Service Binding Operator works in the article Announcing Service Binding Operator 1.0 GA. The article Simplify secure connections to PostgreSQL databases with Node.js provides information about using the SBO to share credentials among backing services and compares the technique to others, using as an example the PostgreSQL client supported by kube-service-bindings.

In the background, the SBO:

  • Passes a variable named SERVICE_BINDING_ROOT to the application environment to direct it to the credentials.
  • Projects the binding data into the application container, under the directory /$SERVICE_BINDING_ROOT/<application-name>.

What is kube-service-bindings and how does it work?

kube-service-bindings finds, parses, and transforms data such as credentials into a consumable format appropriate for each client, such as a database. kube-service-bindings checks the SERVICE_BINDING_ROOT environment variable to find which directory in the application instance has the binding data. The presence of the SERVICE_BINDING_ROOT variable indicates that binding data is available. If the environment variable or binding data are not available, kube-service-bindings throws an error, which can easily be discovered through a try/catch block.

Besides parsing the data, kube-service-bindings knows exactly what it takes to provide the right configuration for each client, another advantage to using the package. Our goal in developing kube-service-bindings is to support the most common clients. We started by supporting backing services listed in the General Availability (GA) release for the Red Hat Service Binding Operator, as outlined in the section Extracting the binding data from backing services of the previously mentioned article.

Version 1.0 of kube-service-bindings has made a good start in its support for clients. We would like to prioritize our work based on the needs of the community, so feel free to open a request in the kube-service-bindings repository for the next client you would like to see supported.

Table 1 shows the currently supported clients. To connect to a client, the Node.js program issues a getBinding call, passing the type (column 1) as the first argument and the client (column 2) as the second.

Table 1: Clients currently supported by kube-service-bindings.

Type

Client

Date Added

AMQP

rhea

March 2022

Kafka

node-rdkafka

April 2021

Kafka

kafkajs

April 2021

MongoDB

MongoDB

February 2022

MongoDB

mongoose

June 2022

MySQL

MySQL

May 2022

MySQL

MySQL 2

May 2022

MySQL

odbc

May 2022

PostgreSQL

odbc

June 2022

PostgreSQL

postgres

December 2021

Redis

redis

January 2022

Redis

ioredis

January 2022

Simplifying access to services on Kubernetes

This article has explained the roles of the Service Binding Operator and kube-service-bindings in making it easy to connect to backing services such as databases. Subsequent articles in this series will go through an example that connects a Node.js application to a database using these tools.

Last updated: August 14, 2023

Related Posts

  • Enable backing services in Kubernetes with kube-service-bindings

  • Connect MongoDB to a Node.js application with kube-service-bindings

  • Announcing Service Binding Operator 1.0 GA

  • Simplify secure connections to PostgreSQL databases with Node.js

  • Bind a Kafka cluster to a Node.js application the easy way

Recent Posts

  • Tekton joins the CNCF as an incubating project

  • Federated identity across the hybrid cloud using zero trust workload identity manager

  • Confidential virtual machine storage attack scenarios

  • Introducing virtualization platform autopilot

  • Integrate zero trust workload identity manager with Red Hat OpenShift GitOps

What’s up next?

The Node.js cheat sheet will help you master the most useful command-line flags to customize Node.js’s behavior. You’ll save time and energy looking up how to do everyday development tasks like executing scripts, debugging, and monitoring your Node.js applications.

Get the cheat sheet
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.