Skip to main content

Overview

Redpanda is a Kafka-compatible streaming platform written in C++. It implements the Kafka wire protocol natively, so any Kafka client, SDK, or tool works without modification. This template deploys a stateful Redpanda broker cluster with SASL authentication, Schema Registry, an optional HTTP REST proxy, and an optional web console.

What Gets Created

  • Stateful Redpanda Workload — A multi-replica broker cluster using the Seastar async runtime. Each broker gets its own persistent volume.
  • Standard Redpanda Console Workload (optional, enabled by default) — Web UI for browsing topics, inspecting messages, managing consumer groups, and viewing Schema Registry schemas.
  • Volume Set — One persistent volume per broker replica for data storage.
  • Identity & Policy — An identity bound to the workloads with reveal access to credential secrets.
  • Secrets — A dictionary secret holding SASL user credentials injected at startup.
This template does not create a GVC. You must deploy it into an existing GVC.

Prerequisites

This template has no external prerequisites. To install, follow the instructions for your preferred method:

UI

Browse, install, and manage templates visually

CLI

Manage templates from your terminal

Terraform

Declare templates in your Terraform configurations
Pulumi Icon Streamline Icon: https://streamlinehq.com

Pulumi

Declare templates in your Pulumi programs

Configuration

The default values.yaml for this template:

Cluster Size and Resources

  • redpanda.replicas — Number of broker replicas. A minimum of 3 is recommended for production to ensure Raft quorum.
  • redpanda.cpu / redpanda.memory — Maximum CPU and memory per broker.
  • redpanda.minCpu / redpanda.minMemory — Minimum guaranteed CPU and memory per broker.
  • redpanda.smp — Number of Seastar reactor threads. Must match the floor of cpu (e.g., cpu: 1500msmp: 1, cpu: 3smp: 3). Without this, Seastar uses all node CPUs and incorrectly divides memory across them.
  • redpanda.reserveMemory — Memory set aside for the OS. Redpanda uses (memory - reserveMemory) for its own heap. Default 1G works for most configurations.
  • redpanda.multiZone — Spread brokers across availability zones within the location.

Storage

Each broker replica gets its own persistent volume. For production workloads with high throughput, use high-throughput-ssd (minimum 200 GiB).
  • redpanda.volume.initialCapacity — Initial volume size in GiB.
  • redpanda.volume.performanceClassgeneral-purpose-ssd or high-throughput-ssd.
  • redpanda.volume.fileSystemTypexfs (default, recommended for Redpanda) or ext4.
Volume encryption via AWS KMS is supported:
After deploying with custom encryption enabled, navigate to each created volume in the Control Plane console, click spec, and follow the AWS Custom Encryption Instructions to complete the setup.

Authentication

SASL is always enabled. All users are defined under redpanda.auth.users. The first user in the list is automatically granted superuser privileges. Additional superusers can be added under redpanda.auth.superusers.
  • redpanda.auth.saslMechanismSCRAM-SHA-256 (default) or SCRAM-SHA-512.
  • redpanda.auth.users — List of username / password pairs created at startup.
  • redpanda.auth.superusers — Additional usernames to grant superuser privileges.

ACLs

  • redpanda.acl.allowEveryoneIfNoAclFound — When false (default), clients without an explicit ACL are denied. Set to true to allow unauthenticated access when no ACL exists for a resource.

Listeners

Enable PandaProxy to produce and consume messages over HTTP without a Kafka client:

Extra Broker Configuration

Pass any Redpanda broker property directly via extra_configurations. These are injected into redpanda.yaml at startup:

Firewall

  • redpanda.firewall.internal_inboundAllowType — Controls which workloads can reach the brokers:
    • same-gvc — All workloads in the same GVC (default).
    • same-org — All workloads in the org.
  • redpanda.firewall.inboundAllowWorkload — Allow specific workloads by path.

Connecting

Redpanda is accessible internally from any workload in the same GVC: To connect to a specific broker replica directly:
Connect using rpk:
For Kafka clients, use the following connection properties:

Redpanda Console

The Redpanda Console is enabled by default and accessible via the Control Plane external endpoint for the {release-name}-console workload. It provides a web UI for browsing topics, inspecting messages, managing consumer groups, and viewing Schema Registry schemas. To expose the console on a custom domain, set redpanda_console.domain:
This creates a Control Plane domain resource that routes HTTPS traffic to the console workload. The same DNS prerequisites apply as for any Control Plane domain (ownership TXT record and CNAME to the GVC alias). To restrict console access to specific IPs, update redpanda_console.firewall.external_inboundAllowCIDR:

External Access

Redpanda brokers can be exposed over the internet via TLS using a public domain. Each broker advertises its own per-replica subdomain and Control Plane routes clients to the correct broker using SNI.

Prerequisites

  1. A domain you control with DNS managed by your registrar (e.g. Cloudflare).
  2. Dedicated Load Balancer enabled on your GVC — required for external TCP routing. Enable under GVC settings in the Control Plane console. See Configure Domain documentation.
  3. DNS records added before deploying. Disable proxying (e.g. Cloudflare’s orange cloud) — TCP traffic must pass through directly:
Add one CNAME per broker replica. The _acme-challenge record is required for Control Plane to issue the TLS certificate via DNS-01. Your GVC alias is visible under GVC settings in the Control Plane console.

Configuration

Connecting Externally

Each broker advertises its own subdomain in the format {clusterName}-{ordinal}-{location}.{domain}. Use all broker addresses as the bootstrap list:
For Kafka clients:

External References

Redpanda Documentation

Official Redpanda documentation

Redpanda Console Documentation

Redpanda Console UI guide

rpk CLI Reference

rpk command reference for managing Redpanda clusters

Schema Registry API

Confluent-compatible Schema Registry and HTTP Proxy API reference