Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions site/content/docs/user/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: extra line not needed, so remove this if you do another update.

Additionally, image archives can be loaded with:
`kind load image-archive /my-image-archive.tar`


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here. If you use a markdown linter, they typically only want one blank line between elements.

## 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 <command> --help
kind <command> <subcommand> --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
Expand Down