"""List of all piraeus operator images""" load("//hack/build/rules/container:third_party_images.bzl", "third_party_container_dep") load( ":version.bzl", "K8S_REGISTRY", "PIRAEUS_OPERATOR_VERSION", "QUAY_REGISTRY", ) def piraeus_images(): """The piraeus_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 = "piraeusoperator", tag = PIRAEUS_OPERATOR_VERSION, digest = "sha256:75b6bfedb9a84231e47da5a4989a9c08624e8c845bcc90e7a4d3f60f807bd81a", repository = "piraeusdatastore/piraeus-operator", registry = QUAY_REGISTRY, ) third_party_container_dep( name = "piraeusserver", tag = "v1.29.2", digest = "sha256:39a43eb984a1435e7925190379e170d7986c90e04ce24cdfd5cd7215c2fb18c0", repository = "piraeusdatastore/piraeus-server", registry = QUAY_REGISTRY, ) third_party_container_dep( name = "piraeuscsi", tag = "v1.6.4", digest = "sha256:ccc2cc3eed788616049a154d463a9a87a7f205cc696bcf4bb507ad22bb29e170", repository = "piraeusdatastore/piraeus-csi", registry = QUAY_REGISTRY, ) third_party_container_dep( name = "drbdreactor", tag = "v1.6.0", digest = "sha256:3fa56f17fb6b17f8300e372ea5708d582a11c69cdc80f4c3f94cc43522280b5f", repository = "piraeusdatastore/drbd-reactor", registry = QUAY_REGISTRY, ) third_party_container_dep( name = "piraeushacontroller", tag = "v1.3.0", digest = "sha256:6ae9f6c4e7bfe587e7a720239cfd51903fd25334b72625f3d9746268e2d4a636", repository = "piraeusdatastore/piraeus-ha-controller", registry = QUAY_REGISTRY, ) third_party_container_dep( name = "drbdshutdownguard", tag = "v1.0.0", digest = "sha256:c4112a5375238ccad9423f071b4b043590c3e360c3b752450b71979fea12dfee", repository = "piraeusdatastore/drbd-shutdown-guard", registry = QUAY_REGISTRY, ) third_party_container_dep( name = "drbd9noble", tag = "v9.2.12", digest = "sha256:fe72760e810ad6c54c3a4c4b13ae1a594e35c4c54b8c0c83f1dad82f9ee7c6f2", repository = "piraeusdatastore/drbd9-noble", registry = QUAY_REGISTRY, ) third_party_container_dep( name = "csiattacher", tag = "v4.7.0", digest = "sha256:47ab8aebebdc59316004ba8d51a903637d808f4e62a6d0f599ed3c2483cea901", repository = "sig-storage/csi-attacher", registry = K8S_REGISTRY, ) third_party_container_dep( name = "livenessprobe", tag = "v2.14.0", digest = "sha256:13f6b1f9d0514b859e549e20b731d93c90a144186deb68bfc931e3dbf9041afc", repository = "sig-storage/livenessprobe", registry = K8S_REGISTRY, ) third_party_container_dep( name = "csiprovisioner", tag = "v5.1.0", digest = "sha256:7beede062248204a54ed6813b2d2fb84a99db6d56a824eed483ed1d7965ea6a1", repository = "sig-storage/csi-provisioner", registry = K8S_REGISTRY, ) third_party_container_dep( name = "csisnapshotter", tag = "v8.1.0", digest = "sha256:81d32545fb1b2c319bfeb36a70db4b4d3aea9c51c0574b209b8f64750b32d2f0", repository = "sig-storage/csi-snapshotter", registry = K8S_REGISTRY, ) third_party_container_dep( name = "csiresizer", tag = "v1.12.0", digest = "sha256:706f7cdcccd30ca5f0e94d548e2e0c658f69c0fe4b68a5bf37818a04ca618d3d", repository = "sig-storage/csi-resizer", registry = K8S_REGISTRY, ) third_party_container_dep( name = "csiexternalhealthmonitorcontroller", tag = "v0.13.0", digest = "sha256:dda7d9053f91ede34fd9d2f465c84817043e5037aa8ea1a20d2c6875b8fa4a44", repository = "sig-storage/csi-external-health-monitor-controller", registry = K8S_REGISTRY, ) third_party_container_dep( name = "csinodedriverregistrar", tag = "v2.12.0", digest = "sha256:f032a0ca4c699eebe403988a0e217c3dfc82e2cee8b7d9d247a493e5a2425f24", repository = "sig-storage/csi-node-driver-registrar", registry = K8S_REGISTRY, )