Kind Operations: Difference between revisions
Jump to navigation
Jump to search
Line 19: | Line 19: | ||
==Delete Cluster== | ==Delete Cluster== | ||
==Get Clusters== | |||
<syntaxhighlight lang='bash'> | |||
kind get clusters | |||
</syntaxhighlight> | |||
=Nodes= | |||
==Get Nodes== | |||
<syntaxhighlight lang='bash'> | |||
kind get nodes | |||
</syntaxhighlight> |
Revision as of 23:40, 5 December 2023
Internal
Installation
brew install kind
Cluster
See:
Create Cluster
export KIND_EXPERIMENTAL_PROVIDER=docker
kind create cluster
By default, the cluster is named "kind".
Upon creation, it can be listed with kind get clusters
. Nodes can be listed with: kind get nodes
.
Delete Cluster
Get Clusters
kind get clusters
Nodes
Get Nodes
kind get nodes