mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-19 03:56:16 +00:00
Additions to kind cheatsheet
This commit is contained in:
+38
-3
@@ -9,12 +9,47 @@ To update or switch versions, run `webi kind@stable` (or `@v2`, `@beta`,etc).
|
||||
|
||||
## Cheat Sheet
|
||||
|
||||
To create a cluster
|
||||
> Kind uses a single docker container to run a lightweight kubernetes cluster for testing and shenanigans
|
||||
|
||||
User Guide - Quick Start: https://kind.sigs.k8s.io/docs/user/quick-start
|
||||
|
||||
To create a cluster with default name
|
||||
```bash
|
||||
kind create cluster
|
||||
```
|
||||
|
||||
To delete a cluster
|
||||
Create a cluster with a specific name
|
||||
```bash
|
||||
kind create cluster --name foo
|
||||
```
|
||||
|
||||
List clusters
|
||||
```bash
|
||||
kind get clusters
|
||||
```
|
||||
|
||||
Specify Kubernetes version
|
||||
```bash
|
||||
kind create cluster --image "kindest/node:$favoriteTag"
|
||||
```
|
||||
- pick your $favoriteTag from here: https://hub.docker.com/r/kindest/node/tags?page=1&ordering=last_updated
|
||||
|
||||
Export all logs from a cluster
|
||||
```bash
|
||||
kind exports logs $HOME/somedir
|
||||
```
|
||||
|
||||
To delete a cluster with default name
|
||||
```bash
|
||||
kind delete cluster
|
||||
```
|
||||
```
|
||||
|
||||
To delete a cluster with specific name
|
||||
```bash
|
||||
kind delete cluster --name foo
|
||||
```
|
||||
|
||||
Get the kubeconfig of a cluster
|
||||
```bash
|
||||
kind get kubeconfig --name foo
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user