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 @@ -65,8 +65,11 @@ All Docker names are suffixed with a hash derived from the file path (to allow c
65
65
## Build artifacts
66
66
The build system output all its products to a top level directory in the source repository named ` _output ` .
67
67
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
+ ```
70
73
71
74
## Releasing
72
75
You can’t perform that action at this time.
0 commit comments