From 3587a8c82681c4528131963423632bf8dcc2a589 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Fri, 9 Jan 2026 23:46:21 +0900 Subject: [PATCH] FIX(zot): correct accessControl format with repositories wrapper - Add repositories wrapper around repo configurations - Fix configuration schema validation error --- zot/helm-values.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/zot/helm-values.yaml b/zot/helm-values.yaml index 99fd76b..104a8f8 100644 --- a/zot/helm-values.yaml +++ b/zot/helm-values.yaml @@ -119,12 +119,14 @@ configMaps: } }, "accessControl": { - "**": { - "anonymousPolicy": ["read"], - "policies": [{ - "users": ["admin"], - "actions": ["read", "create", "update", "delete"] - }] + "repositories": { + "**": { + "anonymousPolicy": ["read"], + "policies": [{ + "users": ["admin"], + "actions": ["read", "create", "update", "delete"] + }] + } } } },