kyverno(wave1): add 7 missing registries to trusted-registries allowlist
Discovered via W1.5 enforcement when querying live cluster state:
PolicyViolation events on 5 deployments (council-complaints, ebook2audiobook,
hermes-agent, netbox, whisper/piper) trying to admit images from registries
not in the original enumeration.
Added entries:
- amruthpillai/* (resume — reactive-resume)
- athomasson2/* (ebook2audiobook)
- netboxcommunity/* (netbox)
- nousresearch/* (hermes-agent)
- opentripplanner/* (osm-routing)
- rhasspy/* (whisper, piper)
- registry.viktorbarzin.me/* (legacy private registry — council-complaints
still references; should migrate to forgejo)
The legacy registry.viktorbarzin.me was supposedly decommissioned 2026-05-07
per CLAUDE.md but council-complaints still uses it — separate cleanup task.
## Verification
- kubectl delete + reapply (kubectl_manifest resourceVersion=0 patch gotcha,
same as 2026-05-18 inject-keel-annotations)
- Dry-run admission of previously-blocked images now PASS:
- netboxcommunity/netbox:v4.5.0-beta1 ✓
- rhasspy/wyoming-whisper:3.1.0 ✓
- registry.viktorbarzin.me/council-complaints:1c56f8f ✓
- Policy still in Enforce mode
## Observation status (W1.6)
- Calico GNP wave1-egress-observe-tier34 still applied, 82 ns selected
- Loki `{job="node-journal"} |~ "calico-packet"` returns ~5000 lines/hour
- No errors from observation infrastructure
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
c11ac7d486
commit
2d35d72a53
1 changed files with 14 additions and 5 deletions
|
|
@ -328,21 +328,30 @@ resource "kubectl_manifest" "policy_require_trusted_registries" {
|
||||||
"docker.n8n.io/*", "registry.gitlab.com/*",
|
"docker.n8n.io/*", "registry.gitlab.com/*",
|
||||||
# Private
|
# Private
|
||||||
"forgejo.viktorbarzin.me/*", "10.0.20.10*",
|
"forgejo.viktorbarzin.me/*", "10.0.20.10*",
|
||||||
|
# Legacy private registry (decommissioned 2026-05-07 per CLAUDE.md
|
||||||
|
# but council-complaints still references — migrate to Forgejo).
|
||||||
|
"registry.viktorbarzin.me/*",
|
||||||
# DockerHub library (bare image names without slash)
|
# DockerHub library (bare image names without slash)
|
||||||
"alpine*", "busybox*", "kong*", "mysql*", "nginx*", "postgres*", "python*",
|
"alpine*", "busybox*", "kong*", "mysql*", "nginx*", "postgres*", "python*",
|
||||||
# DockerHub user repos (no registry prefix, has slash) —
|
# DockerHub user repos (no registry prefix, has slash) —
|
||||||
# enumerated from current cluster state.
|
# enumerated from current cluster state. New entries added
|
||||||
"actualbudget/*", "afadil/*", "binwiederhier/*", "bitnami/*",
|
# 2026-05-22 after Enforce caught these as unallowlisted:
|
||||||
|
# amruthpillai (resume), athomasson2 (ebook2audiobook),
|
||||||
|
# netboxcommunity (netbox), nousresearch (hermes-agent),
|
||||||
|
# opentripplanner (osm-routing), rhasspy (whisper/piper).
|
||||||
|
"actualbudget/*", "afadil/*", "amruthpillai/*", "athomasson2/*",
|
||||||
|
"binwiederhier/*", "bitnami/*",
|
||||||
"clickhouse/*", "cloudflare/*", "coturn/*", "crowdsecurity/*",
|
"clickhouse/*", "cloudflare/*", "coturn/*", "crowdsecurity/*",
|
||||||
"curlimages/*", "deluan/*", "dgtlmoon/*", "dolthub/*",
|
"curlimages/*", "deluan/*", "dgtlmoon/*", "dolthub/*",
|
||||||
"dpage/*", "dperson/*", "edoburu/*", "esanchezm/*",
|
"dpage/*", "dperson/*", "edoburu/*", "esanchezm/*",
|
||||||
"freikin/*", "freshrss/*", "hackmdio/*", "hashicorp/*",
|
"freikin/*", "freshrss/*", "hackmdio/*", "hashicorp/*",
|
||||||
"headscale/*", "jhonderson/*", "kebe/*", "library/*",
|
"headscale/*", "jhonderson/*", "kebe/*", "library/*",
|
||||||
"lissy93/*", "louislam/*", "matrixdotorg/*", "mendhak/*",
|
"lissy93/*", "louislam/*", "matrixdotorg/*", "mendhak/*",
|
||||||
"mghee/*", "mindflavor/*", "mpepping/*", "netsampler/*",
|
"mghee/*", "mindflavor/*", "mpepping/*", "netboxcommunity/*",
|
||||||
"nvidia/*", "onlyoffice/*", "openresty/*", "owntracks/*",
|
"netsampler/*", "nousresearch/*", "nvidia/*", "onlyoffice/*",
|
||||||
|
"openresty/*", "opentripplanner/*", "owntracks/*",
|
||||||
"phpipam/*", "phpmyadmin/*", "privatebin/*", "prom/*",
|
"phpipam/*", "phpmyadmin/*", "privatebin/*", "prom/*",
|
||||||
"prompve/*", "rancher/*", "roundcube/*", "sclevine/*",
|
"prompve/*", "rancher/*", "rhasspy/*", "roundcube/*", "sclevine/*",
|
||||||
"shadowsocks/*", "shlinkio/*", "stirlingtools/*",
|
"shadowsocks/*", "shlinkio/*", "stirlingtools/*",
|
||||||
"technitium/*", "teddysun/*", "temporalio/*",
|
"technitium/*", "teddysun/*", "temporalio/*",
|
||||||
"typhonragewind/*", "tzahi12345/*", "vabene1111/*",
|
"typhonragewind/*", "tzahi12345/*", "vabene1111/*",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue