CockroachDB logo

Skill

installing-cockroachdb-with-helm

install CockroachDB using Helm

Covers Database Deployment Kubernetes

Description

Guides customer-facing installation of CockroachDB on Kubernetes using the CockroachDB split Helm charts and operator-managed v1beta1 resources. Use when installing CockroachDB with Helm, choosing between published and local split charts, verifying a new install, or helping an agent complete first-time Kubernetes onboarding.

SKILL.md

Installing CockroachDB with Helm

Guides an agent through a customer-facing CockroachDB install on Kubernetes using the CockroachDB split Helm charts. Prefer the published split charts for customers. Do not use the unsupported parent or umbrella chart path for customer installs.

When to Use This Skill

  • A customer asks to install CockroachDB on Kubernetes using Helm
  • An agent needs to decide whether to install the published split charts or local split charts
  • A first install needs structured preflight, chart values, and post-install verification
  • A deployment has partially completed and needs the next Helm step

Related skills: Use configuring-cockroachdb-helm-tls for TLS decisions, validating-cockroachdb-helm-multiregion before multi-region installs, debugging-cockroachdb-operator-migrations for StatefulSet or v1alpha1 migrations, and diagnosing-cockroachdb-helm-deployments when any step fails.

Inputs

Collect these before changing the cluster:

InputExampleWhy It Matters
Kubernetes context and namespaceprod-us-east1, cockroachdbAvoids installing into the wrong cluster or namespace
Install pathPublished split charts or local split chartsDetermines Helm commands and dependency order
Operator release and CockroachDB release namescrdb-operator, crdbResource names and generated services depend on release names
Region and cloud providerus-east1, gcpoperator.cloudRegion must match the region reconciled by this operator
TLS modeself-signer, cert-manager, external certificates, insecure non-prodDetermines chart values and required secrets
Topologysingle-region or multi-regionMulti-region requires complete regions entries and cross-region DNS/networking

Safety Considerations

  • Confirm the target Kubernetes context with the user before running helm install, helm upgrade, or kubectl apply.
  • Do not toggle cockroachdb.tls.enabled on an existing cluster. The chart documents this as unsafe and unrecoverable for a running cluster.
  • Do not configure multiple operators with overlapping watchNamespaces; both can reconcile the same CrdbCluster resources.
  • If the customer cannot create ClusterRoles or ClusterRoleBindings, coordinate split-chart node-reader RBAC with the platform team before installing the CockroachDB chart.
  • Do not use unsupported parent or umbrella chart installs for customer-facing deployment guidance.

Execution Discipline

  • Execute one step at a time and inspect the output before moving on. Preflight output determines whether installation can continue.
  • Do not run helm install, helm upgrade, kubectl apply, or any mutating command unless the user explicitly approves it for the target Kubernetes context and namespace.
  • Stop before installing if cluster-scoped RBAC, node labels, storage class, TLS mode, registry access, or multi-region prerequisites are unclear.
  • In production or restricted environments, involve TSE, the platform team, or the operator team before changing RBAC, webhook, operator, certificate, storage, or network configuration.

Step 1: Preflight the Kubernetes Context

Run read-only checks first:

kubectl config current-context
kubectl version --short
helm version --short
kubectl auth can-i create customresourcedefinitions.apiextensions.k8s.io
kubectl auth can-i create clusterroles.rbac.authorization.k8s.io
kubectl auth can-i create clusterrolebindings.rbac.authorization.k8s.io
kubectl get nodes -o wide
kubectl get nodes --show-labels | grep -E 'topology.kubernetes.io/(region|zone)' || true

Interpretation:

  • Kubernetes must be 1.30 or newer for the current v2 chart line.
  • Helm must be v3.
  • Node labels topology.kubernetes.io/region and topology.kubernetes.io/zone should exist before relying on default locality behavior.
  • Missing cluster-scoped RBAC is not automatically fatal, but it changes the install path. Use operator-chart nodeReader values or have a platform team pre-create the required bindings.

Step 2: Choose the Install Path

Use this path for normal customer installs.

helm repo add cockroachdb-v2 https://charts.cockroachdb.com/v2 --force-update
helm repo update cockroachdb-v2
helm search repo cockroachdb-v2 --devel

Install the operator first:

helm upgrade --install crdb-operator cockroachdb-v2/cockroachdb-operator-chart \
  --namespace cockroach-operator-system \
  --create-namespace \
  --version <operator-chart-version> \
  --set cloudRegion=<current-region>

kubectl -n cockroach-operator-system rollout status deploy/cockroach-operator --timeout=5m
kubectl get crd crdbclusters.crdb.cockroachlabs.com crdbnodes.crdb.cockroachlabs.com

Then install CockroachDB:

helm upgrade --install crdb cockroachdb-v2/cockroachdb-chart \
  --namespace cockroachdb \
  --create-namespace \
  --version <cockroachdb-chart-version> \
  -f values.yaml

Local Split Charts

Use this path when working from a checkout of this repository:

helm upgrade --install crdb-operator ./cockroachdb-parent/charts/operator \
  --namespace cockroach-operator-system \
  --create-namespace \
  --set cloudRegion=<current-region>

kubectl -n cockroach-operator-system rollout status deploy/cockroach-operator --timeout=5m

helm upgrade --install crdb ./cockroachdb-parent/charts/cockroachdb \
  --namespace cockroachdb \
  --create-namespace \
  -f values.yaml

Step 3: Create a Minimal Values File

For a single-region secure install using the chart self-signer:

cockroachdb:
  clusterDomain: cluster.local
  tls:
    enabled: true
    selfSigner:
      enabled: true
    certManager:
      enabled: false
    externalCertificates:
      enabled: false
  crdbCluster:
    regions:
      - code: us-east1
        nodes: 3
        cloudProvider: gcp
        namespace: cockroachdb
    dataStore:
      volumeClaimTemplate:
        spec:
          accessModes:
            - ReadWriteOnce
          resources:
            requests:
              storage: 100Gi
          volumeMode: Filesystem

Adjust code, cloudProvider, namespace, storage size, and storage class to the customer environment. The region code should match the Kubernetes node region label and the operator chart cloudRegion.

Step 4: Verify the Install

Check Kubernetes resources:

kubectl -n cockroach-operator-system get deploy cockroach-operator
kubectl -n cockroach-operator-system logs deploy/cockroach-operator --tail=100
kubectl -n cockroachdb get crdbcluster,crdbnode,pods,svc
kubectl -n cockroachdb get crdbcluster crdb -o jsonpath='{.status.readyNodes}{" ready, reconciled="}{.status.reconciled}{" version="}{.status.version}{"\n"}'
kubectl -n cockroachdb get crdbnodes -o custom-columns=NAME:.metadata.name,NODE_ID:.status.nodeID,CONDITIONS:.status.conditions[*].type,TOPOLOGY:.status.topologyValues

Expected state:

  • cockroach-operator Deployment is available.
  • CRDs crdbclusters.crdb.cockroachlabs.com and crdbnodes.crdb.cockroachlabs.com exist.
  • CrdbCluster.status.reconciled is true and readyNodes equals the regional node count.
  • Each CrdbNode has a nodeID and Ready/Running conditions.
  • CockroachDB pods are Running and Ready.

For SQL verification, connect with the certificate mode selected by configuring-cockroachdb-helm-tls, then run:

SELECT version();
SHOW REGIONS;
SHOW JOBS;

Outputs

Return a concise install report:

  • Kubernetes context, namespace, and chart path used
  • Operator release, CockroachDB release, and chart versions
  • Values file path or inline values that were applied
  • CRD registration status
  • CrdbCluster ready/reconciled status and node count
  • SQL verification result or the exact blocker if SQL could not be verified

Troubleshooting Handoff

If any command fails, stop the install flow and use diagnosing-cockroachdb-helm-deployments. Preserve the exact command, stderr, namespace, release names, and values file path. If the failure remains unresolved or the operator appears stuck, gather the operator escalation packet before restarting or changing operator state.

References

© 2026 YourAI.tools. Every skill from an identity-verified publisher.

Independent catalog. Not affiliated with, endorsed by, or sponsored by Anthropic or any listed publisher. All trademarks belong to their respective owners.