Add k3d cheat

This commit is contained in:
Jérémy CHABERNAUD 2019-09-22 10:50:19 +02:00 committed by Denis Isidoro
parent 28597037c6
commit b8bf507d72

34
cheats/k3d.cheat Normal file
View File

@ -0,0 +1,34 @@
% k3d
# Check if docker is running
k3d check-tools
# Start a subshell for a cluster
k3d shell
# Create a single k3s cluster in docker containers
k3d create --name <name>
# Create a multi-node k3s cluster in docker containers
k3d create --name <name> --workers <count>
# Delete cluster
k3d delete --name <name>
# Stop cluster
k3d stop --name <name>
# Start a stopped cluster
k3d start --name <name>
# List all clusters
k3d list
# Get kubeconfig location for cluster
k3d get-kubeconfig --name <name>
# Import a comma- or space-separated list of container images from your local docker daemon into the cluster
k3d import-images
# Show a list of commands or help for one command
k3d help