From bff64dba65c80454d1c7598b9b6090eb2061a8f0 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Mon, 8 Sep 2025 23:08:32 -0500 Subject: [PATCH] zot configmap update --- services/zot/configmap.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/services/zot/configmap.yaml b/services/zot/configmap.yaml index ef4880c..653dfad 100644 --- a/services/zot/configmap.yaml +++ b/services/zot/configmap.yaml @@ -17,14 +17,17 @@ data: "http": { "address": "0.0.0.0", "port": "5000", - "auth": { "htpasswd": { "path": "/etc/zot/htpasswd", "realm": "zot-registry" } }, + "realm": "zot-registry", + "auth": { + "htpasswd": { "path": "/etc/zot/htpasswd" } + }, "accessControl": { "repositories": { "**": { "policies": [ { "users": ["bstein"], "actions": ["read", "create", "update", "delete"] } ], - "defaultPolicy": ["read"], + "defaultPolicy": ["read"], "anonymousPolicy": ["read"] } }, @@ -36,8 +39,8 @@ data: }, "log": { "level": "debug" }, "extensions": { - "ui": { "enable": true }, - "search": { "enable": true }, + "ui": { "enable": true }, + "search": { "enable": true }, "metrics": { "enable": true } } }