Skip to content

Commit

Permalink
Merge pull request kubernetes#125674 from flavianmissi/builds-doc
Browse files Browse the repository at this point in the history
build: fix README instructions to load the output image tar
  • Loading branch information
k8s-ci-robot authored Jul 26, 2024
2 parents 3a8a60e + b98817c commit 86e2e26
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,11 @@ All Docker names are suffixed with a hash derived from the file path (to allow c
## Build artifacts
The build system output all its products to a top level directory in the source repository named `_output`.
These include the binary compiled packages (e.g. kubectl, kube-scheduler etc.) and archived Docker images.
If you intend to run a component with a docker image you will need to import it from this directory with
the appropriate command (e.g. `docker import _output/release-images/amd64/kube-scheduler.tar k8s.io/kube-scheduler:$(git describe)`).
If you intend to run a component with a docker image you will need to load it from this directory with
the appropriate command, e.g.
```
docker load --input _output/release-images/amd64/kube-controller-manager.tar
```

## Releasing

Expand Down

0 comments on commit 86e2e26

Please sign in to comment.