mirror of
https://github.com/coder/coder.git
synced 2026-09-23 22:20:22 +08:00
Makes it easier to pick the right workspace image, both in the template builder and in the docs. - Template builder: the Docker and Kubernetes bases now expose a `container_image` variable in the wizard (freeform text, defaults to `codercom/example-base:ubuntu`), and their prerequisites explain why image choice matters, with tradeoffs between `codercom/example-base:ubuntu` (minimal) and `codercom/example-universal:ubuntu` (catch-all), plus pointers to [coder/images](https://github.com/coder/images) and the image management docs. - Docs: reworked [image management](https://coder.com/docs/@ben%2Fdevrel-201-image-guidance-prereqs/admin/templates/managing-templates/image-management) into a clearer maturity ladder (minimal → golden → project-specific → developer customization), with pullable image references in every example, `codercom/oss-dogfood` as a project-specific example, and Dev Containers + [mise](https://mise.jdx.dev/) as ways to customize without new images. Companion PR for the starter templates: coder/registry#943 Part of DEVREL-201. 🤖 Generated with Coder Agents using Claude, on behalf of @bpmct (wizard variable by @jeremyruppel in #27024) --------- Co-authored-by: Jeremy Ruppel <jeremyruppel@users.noreply.github.com>
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"id": "kubernetes",
|
|
"display_name": "Kubernetes",
|
|
"os": "linux",
|
|
"default_context": {
|
|
"container_image": "codercom/example-base:ubuntu"
|
|
},
|
|
"variables": [
|
|
{
|
|
"name": "container_image",
|
|
"type": "string",
|
|
"description": "Container image for workspaces. The image determines which tools and languages are available in the workspace by default. See the template README for guidance on choosing an image.",
|
|
"default": "codercom/example-base:ubuntu",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "use_kubeconfig",
|
|
"type": "bool",
|
|
"description": "Use host kubeconfig. Set to true if the Coder host is running outside the Kubernetes cluster for workspaces.",
|
|
"default": false,
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "namespace",
|
|
"type": "string",
|
|
"description": "The Kubernetes namespace to create workspaces in. Must exist prior to creating workspaces.",
|
|
"required": true,
|
|
"sensitive": false,
|
|
"computed": false
|
|
}
|
|
]
|
|
}
|