From 87f6a9d1c3aaae15f2034d2518f15c641e403c7b Mon Sep 17 00:00:00 2001 From: radex Date: Fri, 1 Nov 2024 00:05:23 +0100 Subject: [PATCH] cluster/registry: bump registry to v2.8.3 (latest) Change-Id: I16958556db3b11456184da1c80f2c2faf1c2f9b7 Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/2014 Reviewed-by: informatic --- cluster/kube/lib/registry.libsonnet | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cluster/kube/lib/registry.libsonnet b/cluster/kube/lib/registry.libsonnet index 2110cd1b..2ed32b99 100644 --- a/cluster/kube/lib/registry.libsonnet +++ b/cluster/kube/lib/registry.libsonnet @@ -215,7 +215,7 @@ local kube = import "../../../kube/hscloud.libsonnet"; }, containers_: { registry: kube.Container("docker-registry") { - image: "registry:2.7.1", + image: "registry:2.8.3", args: ["/config/config.yml"], ports_: { registry: { containerPort: 5000 }, @@ -229,6 +229,7 @@ local kube = import "../../../kube/hscloud.libsonnet"; local cephSecretName = "rook-ceph-object-user-%s-registry" % [cfg.objectStorageName], REGISTRY_STORAGE_S3_ACCESSKEY: { secretKeyRef: { name: cephSecretName, key: "AccessKey" } }, REGISTRY_STORAGE_S3_SECRETKEY: { secretKeyRef: { name: cephSecretName, key: "SecretKey" } }, + REGISTRY_AUTH_PORT: '', // lmao https://github.com/distribution/distribution/issues/3653 }, }, },