kindplane config¶
View and compare kindplane configuration files.
Usage¶
Subcommands¶
| Subcommand | Description |
|---|---|
show | Display the current kindplane configuration |
diff | Compare two configuration files |
kind | Output the Kind cluster configuration |
kindplane config show¶

Display the current kindplane configuration.
Usage¶
Flags¶
| Flag | Short | Description |
|---|---|---|
--config | -c | Configuration file (default: kindplane.yaml) |
Description¶
Displays the parsed and validated configuration file with syntax highlighting.
Examples¶
Show Current Configuration¶
Show Specific Configuration¶
Output¶
cluster:
name: kindplane-dev
kubernetesVersion: "1.29.0"
nodes:
controlPlane: 1
workers: 2
crossplane:
version: "1.15.0"
providers:
- name: provider-aws
package: xpkg.upbound.io/upbound/provider-aws:v1.1.0
kindplane config diff¶

Compare two configuration files.
Usage¶
Description¶
Shows the differences between two kindplane configuration files. Useful for comparing environments or reviewing changes.
Examples¶
Compare Two Configs¶
Compare with Backup¶
Output¶
--- kindplane.yaml
+++ production.yaml
@@ cluster @@
name: kindplane-dev
- kubernetesVersion: "1.29.0"
+ kubernetesVersion: "1.28.0"
nodes:
- workers: 2
+ workers: 3
@@ crossplane.providers @@
+ - name: provider-gcp
+ package: xpkg.upbound.io/upbound/provider-gcp:v1.0.0
kindplane config kind¶
Output the Kind cluster configuration.
Usage¶
Flags¶
| Flag | Short | Description |
|---|---|---|
--config | -c | kindplane configuration file |
--output | -o | Output file (default: stdout) |
Description¶
Generates the Kind cluster configuration YAML based on your kindplane configuration. This is useful for:
- Using Kind CLI directly
- Debugging cluster configuration
- Understanding what kindplane creates
Examples¶
Output to Terminal¶
Save to File¶
Use with Kind CLI¶
Output¶
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
name: kindplane-dev
nodes:
- role: control-plane
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
extraPortMappings:
- containerPort: 80
hostPort: 8080
protocol: TCP
- role: worker
- role: worker
Use Cases¶
Review Configuration¶
Before running kindplane up:
Compare Environments¶
Export Kind Config¶
Use Kind CLI directly for advanced scenarios:
# Generate Kind config
kindplane config kind --output kind-config.yaml
# Create cluster with Kind
kind create cluster --config kind-config.yaml
# Then install Crossplane manually
helm install crossplane crossplane-stable/crossplane
Debugging¶
When troubleshooting cluster issues:
# View full configuration
kindplane config show
# Check Kind configuration
kindplane config kind
# Verify against running cluster
kind get kubeconfig --name kindplane-dev