File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,11 @@ All Docker names are suffixed with a hash derived from the file path (to allow c
50
50
## Build artifacts
51
51
The build system output all its products to a top level directory in the source repository named ` _output ` .
52
52
These include the binary compiled packages (e.g. kubectl, kube-scheduler etc.) and archived Docker images.
53
- If you intend to run a component with a docker image you will need to import it from this directory with
54
- the appropriate command (e.g. ` docker import _output/release-images/amd64/kube-scheduler.tar k8s.io/kube-scheduler:$(git describe) ` ).
53
+ If you intend to run a component with a docker image you will need to load it from this directory with
54
+ the appropriate command, e.g.
55
+ ```
56
+ docker load --input _output/release-images/amd64/kube-controller-manager.tar
57
+ ```
55
58
56
59
## Releasing
57
60
You can’t perform that action at this time.
0 commit comments