Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Experimental HelmOps controller. #3092

Merged
merged 15 commits into from
Dec 16, 2024
Prev Previous commit
Next Next commit
Upgrades zot to version 2.1.1
This is so we can enable the UI and browse artifacts

Signed-off-by: Xavi Garcia <xavi.garcia@suse.com>
  • Loading branch information
0xavi0 committed Dec 16, 2024
commit 46d45f1ade6c41aee48364418ee770bfbcab5a4e
22 changes: 16 additions & 6 deletions e2e/assets/helm/zot_configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ data:
"key": "/etc/zot/certs/tls.key"
},
"accessControl": {
"**": {
"policies": [{
"users": ["admin"],
"actions": ["read", "create", "update", "delete"]
}],
"defaultPolicy": ["read", "create"]
"repositories": {
"**": {
"policies": [{
"users": ["admin"],
"actions": ["read", "create", "update", "delete"]
}],
"defaultPolicy": ["read", "create"]
}
}
},
"address": "0.0.0.0",
Expand All @@ -29,5 +31,13 @@ data:
"log": { "level": "debug" },
"storage": {
"rootDirectory": "/tmp/zot"
},
"extensions": {
"ui": {
"enable": true
},
"search": {
"enable": true
}
}
}
2 changes: 1 addition & 1 deletion e2e/assets/helm/zot_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: zot
image: ghcr.io/project-zot/zot-linux-amd64:v1.4.3
image: ghcr.io/project-zot/zot-linux-amd64:v2.1.1
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8082
Expand Down