mirror of https://github.com/k3s-io/k3s
Merge pull request #51297 from ixdy/bazel-fast-docker_pull
Automatic merge from submit-queue (batch tested with PRs 50889, 51347, 50582, 51297, 51264) bazel: use fast docker_pull **What this PR does / why we need it**: takes advantage of https://github.com/bazelbuild/rules_docker/pull/71. Faster builds = yay. **Release note**: ```release-note NONE ``` /assign @Q-Lee @spxtr @mikedanesepull/6/head
commit
2616513381
10
build/BUILD
10
build/BUILD
|
@ -25,23 +25,23 @@ filegroup(
|
|||
# in build/common.sh.
|
||||
DOCKERIZED_BINARIES = {
|
||||
"cloud-controller-manager": {
|
||||
"base": "@official_busybox//image:image.tar",
|
||||
"base": "@official_busybox//image",
|
||||
"target": "//cmd/cloud-controller-manager:cloud-controller-manager",
|
||||
},
|
||||
"kube-apiserver": {
|
||||
"base": "@official_busybox//image:image.tar",
|
||||
"base": "@official_busybox//image",
|
||||
"target": "//cmd/kube-apiserver:kube-apiserver",
|
||||
},
|
||||
"kube-controller-manager": {
|
||||
"base": "@official_busybox//image:image.tar",
|
||||
"base": "@official_busybox//image",
|
||||
"target": "//cmd/kube-controller-manager:kube-controller-manager",
|
||||
},
|
||||
"kube-scheduler": {
|
||||
"base": "@official_busybox//image:image.tar",
|
||||
"base": "@official_busybox//image",
|
||||
"target": "//plugin/cmd/kube-scheduler:kube-scheduler",
|
||||
},
|
||||
"kube-proxy": {
|
||||
"base": "@debian-iptables-amd64//image:image.tar",
|
||||
"base": "@debian-iptables-amd64//image",
|
||||
"target": "//cmd/kube-proxy:kube-proxy",
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue