docs(kubernetes): dedicated Kubernetes docs hub - #1326
Open
sam-goodwin wants to merge 3 commits into
Open
Conversation
Add a /kubernetes docs hub (tab, sidebar, reference directory card) with an overview, setup, a five-part tutorial on a local cluster, and concept pages for clusters, workloads, objects, and guides. The AWS EKS page now covers cluster provisioning only and hands workloads off to the hub. Two provider fixes found while verifying the tutorial on kind: - Kubernetes.Job delete now cascades to its pods (propagationPolicy=Background; batch/v1 defaulted to orphaning them) - HelmChart's default releaseName is capped at Helm's 53-char limit Add examples/kubernetes-local (the tutorial's end state on any kubeconfig cluster). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
sam-goodwin
marked this pull request as ready for review
August 23, 2026 09:31
Delete reference minutiae and explanatory prose; keep every snippet. Prose words 18.7k -> 5.3k, all cross-references re-verified, site build green. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Speak to the developer doing the task: what to do and what they'll see. Drop sentences about internals, design rationale, and the docs themselves. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Kubernetes gets its own docs hub. The thesis: one workload model for any cluster —
Deployment,Job,Manifest,HelmChartpoint at a kubeconfig context, a raw connection, or a managed cluster, and the cluster's adapter decides what comes for free (auth only, or auth + workload identity + image registry on EKS).Kubernetestab (docs-tabs.ts), sidebar group, and reference-directory card;/providers/kubernetes/*now belong to the hub tab instead of the bare Reference tab.aws/compute/ekskeeps cluster provisioning (Network, Cluster, AccessEntry, Addon, HyperPod) and hands workloads off to the hub;choosing-a-runtimeand the AWS index link the hub.examples/kubernetes-local: the tutorial's end state on any kubeconfig cluster, no registry needed.Tutorial parts 1–4 were run end to end on a kind cluster. Two provider bugs surfaced and are fixed here:
Before the second fix, a stack named
KubernetesLocalExamplefailedhelm templatewithrelease name … must not be longer than 53.🤖 Generated with Claude Code