forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
containers.bzl
72 lines (64 loc) · 2.46 KB
/
containers.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2019 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
def repositories():
container_pull(
name = "distroless-base",
digest = "sha256:2b0a8e9a13dcc168b126778d9e947a7081b4d2ee1ee122830d835f176d0e2a70",
registry = "gcr.io",
repository = "distroless/base",
# tag = "latest", as of Jul 15 2020
)
container_pull(
name = "alpine-base",
digest = "sha256:94eabd0927065a4fd03136179c4467fc42d3d08f78fd571e395599ff8521c210",
registry = "gcr.io",
repository = "k8s-prow/alpine",
# tag = "v20200713-e9b3d9d",
)
container_pull(
name = "alpine-bash",
digest = "sha256:5b2616c8e2a9ca1e8cd015ad76df3bedecdb7b98b8825c718360ec6b98cb1dcc",
registry = "gcr.io",
repository = "k8s-testimages/alpine-bash",
# tag = "v20200713-e9b3d9d",
)
container_pull(
name = "gcloud-base",
digest = "sha256:5b49dfb5e366dd75a5fc6d5d447be584f8f229c5a790ee0c3b0bd0cf70ec41dd",
registry = "gcr.io",
repository = "cloud-builders/gcloud",
# tag = "latest",
)
container_pull(
name = "git-base",
digest = "sha256:1527341aff1003b6b27c8ed935e6f0200258bee55b6eb178ca3ef124196384fe",
registry = "gcr.io",
repository = "k8s-prow/git",
# tag = "v20200713-e9b3d9d",
)
container_pull(
name = "gcloud-go",
digest = "sha256:ca9873d744f19e77ceafb499846248a82cde74ab5a613dd394348e7904d08d71",
registry = "gcr.io",
repository = "k8s-testimages/gcloud-in-go",
# tag = "v20200205-602500d",
)
container_pull(
name = "bazel-base",
digest = "sha256:2e8163b61f3759f6ff0e4df43c40d092dae331b1c2d5326f05f78e72a68d3203",
registry = "gcr.io",
repository = "k8s-testimages/launcher.gcr.io/google/bazel",
tag = "v20200609-e7bfd25-test-infra",
)