diff --git a/services/zot/configmap.yaml b/services/zot/configmap.yaml index 38527cf..55fb1c7 100644 --- a/services/zot/configmap.yaml +++ b/services/zot/configmap.yaml @@ -35,11 +35,13 @@ data: "accessControl": { "repositories": { "**": { - "policies": [ - { "groups": ["admin", "image-pusher"], "actions": ["read", "create", "update", "delete"] } + "policies": [], + "defaultPolicy": [ + { "actions": ["read", "create", "update", "delete"] } ], - "defaultPolicy": [], - "anonymousPolicy": [] + "anonymousPolicy": [ + { "actions": ["read", "create", "update", "delete"] } + ] } }, "adminPolicy": { diff --git a/services/zot/ingress.yaml b/services/zot/ingress.yaml index 9180541..3425535 100644 --- a/services/zot/ingress.yaml +++ b/services/zot/ingress.yaml @@ -22,6 +22,6 @@ spec: pathType: Prefix backend: service: - name: oauth2-proxy-zot + name: zot port: - number: 80 + number: 5000