...
1"""List of all etcd images"""
2
3load("//hack/build/rules/container:third_party_images.bzl", "third_party_container_dep")
4load(
5 ":digests.bzl",
6 "ETCD_DIGEST",
7 "ETCD_REGISTRY",
8 "ETCD_VERSION",
9)
10
11def etcd_images():
12 """The etcd_images function collects all of the third_party_container_dep rules
13
14 together for the ease of incorporating into `hack/deps/images.bzl`
15 To add an additional dependency, create a new third_party_container_dep target
16 and add the required fields.
17 """
18
19 third_party_container_dep(
20 name = "etcd",
21 tag = ETCD_VERSION,
22 digest = ETCD_DIGEST,
23 repository = "etcd",
24 registry = ETCD_REGISTRY,
25 )
View as plain text