Configuration
This guide covers how to configure KIND cluster creation.
We know this is currently a bit lacking and will expand it over time - PRs welcome!
Contents 🔗︎
Getting Started 🔗︎
To configure kind cluster creation, you will need to create a YAML config file. This file follows Kubernetes conventions for versioning etc.
A minimal valid config is:
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
This config merely specifies that we are configuration a KIND cluster (kind: Cluster
)
and that the version of KIND's config we are using is v1alpha4
(apiVersion: kind.x-k8s.io/v1alpha4
).
Any given version of kind may support different versions which will have different options and behavior. This is why we must always specify the version.
This mechanism is inspired by Kubernetes resources and component config.
To use this config, place the contents in a file config.yaml
and then run
kind create cluster --config=config.yaml
from the same directory.
You can also include a full file path like kind create cluster --config=/foo/bar/config.yaml
.
The structure of the Cluster
type is defined by a Go struct, which is described
here.
A Note On CLI Parameters and Configuration Files 🔗︎
Unless otherwise noted, parameters passed to the CLI take precedence over their equivalents in a config file. For example, if you invoke:
|
The name my-cluster
will be used regardless of the presence of that value in
your config file.
Cluster-Wide Options 🔗︎
The following high level options are available.
NOTE: not all options are documented yet! We will fix this with time, PRs welcome!
Name Your Cluster 🔗︎
You can give your cluster a name by specifying it in your config:
|
Feature Gates 🔗︎
Kubernetes feature gates can be enabled cluster-wide across all Kubernetes components with the following config:
|
Runtime Config 🔗︎
Kubernetes API server runtime-config can be toggled using the runtimeConfig
key, which maps to the --runtime-config
kube-apiserver flag.
This may be used to e.g. disable beta / alpha APIs.
|
Networking 🔗︎
Multiple details of the cluster's networking can be customized under the
networking
field.
IP Family 🔗︎
KIND has limited support for IPv6 (and soon dual-stack!) clusters, you can switch from the default of IPv4 by setting:
|
NOTE: you may need to reconfigure your docker daemon to enable ipv6 in order to use this.
IPv6 does not work on docker for mac because port forwarding ipv6 is not yet supported in docker for mac.
API Server 🔗︎
The API Server listen address and port can be customized with:
|
Security Goose Says:
NOTE: You should really think thrice before exposing your kind cluster publicly! kind does not ship with state of the art security or any update strategy (other than disposing your cluster and creating a new one)! We strongly discourage exposing kind to anything other than loopback.
Pod Subnet 🔗︎
You can configure the subnet used for pod IPs by setting
|
Service Subnet 🔗︎
You can configure the Kubernetes service subnet used for service IPs by setting
|
Disable Default CNI 🔗︎
KIND ships with a simple networking implementation (“kindnetd”) based around
standard CNI plugins (ptp
, host-local
, …) and simple netlink routes.
This CNI also handles IP masquerade.
You may disable the default to install a different CNI. This is a power user feature with limited support, but many common CNI manifests are known to work, e.g. Calico.
|
kube-proxy mode 🔗︎
You can configure the kube-proxy mode that will be used, between iptables and ipvs. By default iptables is used
|
To disable kube-proxy, set the mode to "none"
.
Nodes 🔗︎
The kind: Cluster
object has a nodes
field containing a list of node
objects. If unset this defaults to:
nodes:
# one node hosting a control plane
- role: control-plane
You can create a multi node cluster with the following config:
|
You can also set a specific Kubernetes version by setting the node
's container image. You can find available image tags on the releases page. Please include the @sha256:
image digest from the image in the release notes, as seen in this example:
|
Per-Node Options 🔗︎
The following options are available for setting on each entry in nodes
.
NOTE: not all options are documented yet! We will fix this with time, PRs welcome!
Extra Mounts 🔗︎
Extra mounts can be used to pass through storage on the host to a kind node for persisting data, mounting through code etc.
examples/config-with-mounts.yaml |
---|
|
NOTE: If you are using Docker for Mac or Windows check that the hostPath is included in the Preferences -> Resources -> File Sharing.
For more information see the Docker file sharing guide.
Extra Port Mappings 🔗︎
Extra port mappings can be used to port forward to the kind nodes. This is a cross-platform option to get traffic into your kind cluster.
With docker on Linux you can simply send traffic to the node IPs from the host without this, but to cover macOS and Windows you'll want to use these.
You may also want to see the Ingress Guide.
examples/config-with-port-mapping.yaml |
---|
|
An example http pod mapping host ports to a container port.
|
NodePort with Port Mappings 🔗︎
To use port mappings with NodePort
, the kind node containerPort
and the service nodePort
needs to be equal.
|
And then set nodePort
to be 30950.
|
Kubeadm Config Patches 🔗︎
KIND uses kubeadm
to configure cluster nodes.
Formally KIND runs kubeadm init
on the first control-plane node
which can be customized by using the kubeadm
InitConfiguration
(spec)
|
On every additional node configured in the KIND cluster,
worker or control-plane (in HA mode),
KIND runs kubeadm join
which can be configured using the
JoinConfiguration
(spec)
|