"""List of all etcd images""" load("//hack/build/rules/container:third_party_images.bzl", "third_party_container_dep") load( ":digests.bzl", "ETCD_DIGEST", "ETCD_REGISTRY", "ETCD_VERSION", ) def etcd_images(): """The etcd_images function collects all of the third_party_container_dep rules together for the ease of incorporating into `hack/deps/images.bzl` To add an additional dependency, create a new third_party_container_dep target and add the required fields. """ third_party_container_dep( name = "etcd", tag = ETCD_VERSION, digest = ETCD_DIGEST, repository = "etcd", registry = ETCD_REGISTRY, )