Principles

While developing kind the following principles should be considered.

Contents 🔗︎

Degrade Gracefully 🔗︎

As much as possible kind should not fail, because it is to be used for testing. Partially degraded states can still be useful and still be debugged.

As a concrete example: We “pre-load” images that the cluster depends on by packing them into the “node image”. If these images fail to load or are not present in the node image kind will fall back to letting the “node"s container runtime attempt to pull them.

Similarly we must at least support all officially supported Kubernetes releases, which may mean gracefully degrading functionality for older releases.

Target CRI Functionality 🔗︎

Currently kind only supports docker and uses it directly to create “node” containers.

In order to aid supporting multiple container runtimes going forward and avoid unnecessary coupling, we should target functionality covered by the Kubernetes CRI (Container Runtime Interface).

Leverage Existing Tooling 🔗︎

Where possible we should not reinvent the wheel.

Examples include:

Re-implementing some amount of functionality is expected, particularly between languages and for internal / insufficiently-generic components, but in general we should collaborate where possible.

Avoid Breaking Users 🔗︎

Going forward kind will avoid breaking changes to the command line interface and configuration.

Next we will extend this to a documented set of re-usable packages (To be determined, but likely IE pkg/cluster).

While we are alpha grade currently, we will move to beta and respect the Kubernetes Deprecation Policy.

Externally facing features should consider long-term supportability and extensibility.

Follow Kubernetes API Conventions 🔗︎

As a general rule of thumb kind prefers to implement configuration using Kubernetes style configuration files.

While doing this we should respect the Kubernetes API Conventions.

Additionally we should minimize the number of flags used and avoid structured values in flags as these cannot be versioned.

Minimize Assumptions 🔗︎

Avoid making any unnecessary assumptions. Currently we assume:

Be Hermetic 🔗︎

As an extension of minimizing assumptions, kind should be as hermetic as possible. In other words:

No External State 🔗︎

State is offloaded into the “node” containers in the form of labels, files in the container filesystem, and processes in the container. The cluster itself stores all state. No external state stores are used and the only stateful process is the container runtime. kind does not itself store or manage state.

This simplifies a lot of problems and eases portability, while forcing cluster interactions to be consistent.

Consider Automation 🔗︎

While kind strives to present a pleasant UX to users on their local machines, automation for end to end testing is the original & primary use case. Automated usage should be considered for all features.