All Tools View Categories About Contact Privacy

Minikube / Kind Config Generator

Build a kind Cluster config for a local development Kubernetes cluster in your browser.

Runs entirely in your browser - nothing is uploaded and no cluster connection is made.
0
nodes
Your generated kind config will appear here.

About Minikube / Kind Config Generator

The Minikube / Kind Config Generator writes a kind Cluster config so you can spin up a local multi-node development cluster without recalling the schema. You choose how many control-plane and worker nodes you want.

The output is valid kind YAML with a nodes list. Counts are validated as non-negative integers. Everything runs locally - nothing is uploaded and no cluster connection is made.

Features

  • kind schema - correct v1alpha4 Cluster config.
  • Node topology - control-plane and worker counts.
  • Validation - non-negative integer counts.
  • Copy / Download / Print - get kind-config.yaml wherever you need it.

How to Use

  1. Pick control-plane and worker counts.
  2. Watch the preview and export.
  3. Run kind create cluster --config kind-config.yaml.

Examples

Example 1 - single node. 1 control-plane, 0 workers.

Example 2 - HA-ish. 1 control-plane, 3 workers.

Benefits

  • Correct schema - valid kind config.
  • Validated - node counts checked.
  • Clean output - empty fields omitted.
  • Private - everything runs in the browser.
  • Copy, download or print - get the manifest where you need it.

Frequently Asked Questions

What does this generate?
A kind Cluster config (apiVersion kind.sigs.k8s.io/v1alpha4) describing control-plane and worker nodes for a local dev cluster.
Is this for minikube too?
Minikube is usually started with a single command, but the same node topology idea applies. This tool emits a kind config you pass to kind create cluster --config.
Which fields are supported?
Number of control-plane nodes and number of worker nodes.
Is the count validated?
Yes. Both counts must be non-negative integers.
Does this connect to a cluster?
No. Everything runs in your browser and nothing is uploaded.
Can I download it?
Yes. Copy the YAML, download kind-config.yaml, or print it.