diff --git a/site/content/docs/user/quick-start.md b/site/content/docs/user/quick-start.md index aedcb069cb..1fe2e7ba56 100644 --- a/site/content/docs/user/quick-start.md +++ b/site/content/docs/user/quick-start.md @@ -226,10 +226,26 @@ Docker images can be loaded into your cluster nodes with: > cluster you wish to load the images into: > `kind load docker-image my-custom-image-0 my-custom-image-1 --name kind-2` + Additionally, image archives can be loaded with: `kind load image-archive /my-image-archive.tar` + +## Discovering Additional Command Options + +kind provides built-in help for all commands and subcommands. +You can explore available flags and usage details by running: + +``` +kind help +kind --help +kind --help +``` + +This applies to commands such as `kind load image-archive` and others. + This allows a workflow like: + ``` docker build -t my-custom-image:unique-tag ./my-image-dir kind load docker-image my-custom-image:unique-tag