Skip to content

NATS

Let's see how to run nats.io (GitHub) in a Kubernetes cluster.

Configuration

We'll use the official Helm chart (code):

Deployment

bash
# adds Helm chart repository
helm repo add nats https://nats-io.github.io/k8s/helm/charts
helm repo update

# installs
helm upgrade --install nats nats/nats --namespace nats --create-namespace

# uninstalls
helm uninstall nats -n nats
kubectl delete ns nats