File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
` hyperkube ` is built for multiple architectures and _ the image is pushed automatically on every release._
6
6
7
+ #### Images for development scenarios
8
+
9
+ During the development process, it's effective to just build only the required binaries for specific
10
+ architecture and generate single hyperkube image from it. The following shows how to generate
11
+ linux/amd64 hyperkube image:
12
+
13
+ ``` console
14
+ # Run the following from the top level kubernetes directory, to build the binaries necessary for creating hyperkube image.
15
+ $ KUBE_BUILD_PLATFORMS=linux/amd64 make kube-apiserver kube-controller-manager kube-proxy kube-scheduler kubectl kubelet
16
+
17
+ # Create and push the hyperkube image
18
+ $ REGISTRY=< registry> VERSION=< image version> ARCH=amd64 make -C cluster/images/hyperkube push
19
+ ```
20
+
7
21
#### How to release by hand
8
22
9
23
``` console
You can’t perform that action at this time.
0 commit comments