mirror of
https://github.com/denisidoro/navi
synced 2024-11-10 22:14:15 +00:00
Fix name var for creating
This commit is contained in:
parent
f997fb1125
commit
e523febf0c
1 changed files with 7 additions and 7 deletions
|
@ -7,25 +7,25 @@ k3d check-tools
|
|||
k3d shell
|
||||
|
||||
# Create a single k3s cluster in docker containers
|
||||
k3d create --name <name>
|
||||
k3d create --name <cluster_name>
|
||||
|
||||
# Create a multi-node k3s cluster in docker containers
|
||||
k3d create --name <name> --workers <count>
|
||||
k3d create --name <name> --workers <worker_count>
|
||||
|
||||
# Delete cluster
|
||||
k3d delete --name <name>
|
||||
k3d delete --name <cluster_name>
|
||||
|
||||
# Stop cluster
|
||||
k3d stop --name <name>
|
||||
k3d stop --name <cluster_name>
|
||||
|
||||
# Start a stopped cluster
|
||||
k3d start --name <name>
|
||||
k3d start --name <cluster_name>
|
||||
|
||||
# List all clusters
|
||||
k3d list
|
||||
|
||||
# Get kubeconfig location for cluster
|
||||
k3d get-kubeconfig --name <name>
|
||||
k3d get-kubeconfig --name <cluster_name>
|
||||
|
||||
# Import a comma- or space-separated list of container images from your local docker daemon into the cluster
|
||||
k3d import-images
|
||||
|
@ -33,4 +33,4 @@ k3d import-images
|
|||
# Show a list of commands or help for one command
|
||||
k3d help
|
||||
|
||||
$ name: k3d list |awk '{print $2}' | awk 'NF {print $0}' | tail -n +2
|
||||
$ cluster_name: k3d list |awk '{print $2}' | awk 'NF {print $0}' | tail -n +2
|
||||
|
|
Loading…
Reference in a new issue