Skip to content

Commit 86e2e26

Browse files
authored
Merge pull request kubernetes#125674 from flavianmissi/builds-doc
build: fix README instructions to load the output image tar
2 parents 3a8a60e + b98817c commit 86e2e26

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,11 @@ All Docker names are suffixed with a hash derived from the file path (to allow c
6565
## Build artifacts
6666
The build system output all its products to a top level directory in the source repository named `_output`.
6767
These include the binary compiled packages (e.g. kubectl, kube-scheduler etc.) and archived Docker images.
68-
If you intend to run a component with a docker image you will need to import it from this directory with
69-
the appropriate command (e.g. `docker import _output/release-images/amd64/kube-scheduler.tar k8s.io/kube-scheduler:$(git describe)`).
68+
If you intend to run a component with a docker image you will need to load it from this directory with
69+
the appropriate command, e.g.
70+
```
71+
docker load --input _output/release-images/amd64/kube-controller-manager.tar
72+
```
7073

7174
## Releasing
7275

0 commit comments

Comments
 (0)