> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cockroachlabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deploy and Manage Overview

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

Deploy Cockroach Continuum by creating clusters in a Continuum organization, and manage them through the Cloud Console, the Cloud API, Terraform, or the `ccloud` CLI. A cluster's edition and <InternalLink path="plenum-overview#usage-based-storage">storage model</InternalLink> are chosen when you create it.

Pages in this section:

* <InternalLink path="create-a-cluster">Create a Cluster</InternalLink>
* <InternalLink path="cluster-management">Cluster Management</InternalLink>
* <InternalLink version="cockroachcloud" path="cloud-api">Cloud API</InternalLink>
* <InternalLink version="cockroachcloud" path="ccloud-get-started">ccloud CLI</InternalLink>
