Skip to content

kindplane config kind

kindplane config kind

Output the Kind cluster configuration

Synopsis

Generate and output the Kind cluster configuration derived from kindplane.yaml.

This allows you to use the configuration with the kind CLI directly:

kindplane config kind > kind-config.yaml kind create cluster --config kind-config.yaml

The output includes all settings from kindplane.yaml translated to Kind's configuration format, including node images, port mappings, mounts, and containerd patches for registries.

kindplane config kind [flags]

Examples

  # Output to stdout
  kindplane config kind

  # Save to file
  kindplane config kind -o kind-config.yaml

  # Use directly with kind CLI (stdin)
  kindplane config kind | kind create cluster --config -

Options

  -h, --help            help for kind
  -o, --output string   Write output to file instead of stdout

Options inherited from parent commands

  -c, --config string   config file (default is ./kindplane.yaml)
  -V, --verbose         verbose output

SEE ALSO