feat: add docker registry remotes and image include_patterns to artifactapi

Adds include_patterns to existing ghcr and dockerhub remotes covering all
container images used in the repo, and adds five new docker registry remotes
(quay, k8s-registry, gitlab, elastic, gcr). Fixes type/package on all docker
remotes to remote/docker.
This commit is contained in:
2026-04-25 18:47:44 +10:00
parent 7535d655fe
commit 97d8f2e8ef
+82 -4
View File
@@ -303,18 +303,96 @@ remotes:
ghcr: ghcr:
base_url: "https://ghcr.io" base_url: "https://ghcr.io"
type: "docker" type: "remote"
package: "generic" package: "docker"
description: "GitHub Container Registry" description: "GitHub Container Registry"
include_patterns:
- "^cloudnative-pg/cloudnative-pg"
- "^openvoxproject/"
- "^stakater/reloader"
- "^voxpupuli/puppetboard"
cache: cache:
file_ttl: 0 file_ttl: 0
index_ttl: 300 index_ttl: 300
dockerhub: dockerhub:
base_url: "https://registry-1.docker.io" base_url: "https://registry-1.docker.io"
type: "docker" type: "remote"
package: "generic" package: "docker"
description: "Docker Hub registry" description: "Docker Hub registry"
include_patterns:
- "^library/busybox"
- "^library/nginx"
- "^library/postgres"
- "^library/redis"
- "^beats/filebeat"
- "^bitnami/"
- "^curlimages/curl"
- "^emberstack/kubernetes-reflector"
- "^hashicorp/vault-secrets-operator"
- "^jfrog/"
- "^rancher/"
- "^ubi9/ubi-minimal"
- "^victoriametrics/"
- "^woodpeckerci/"
cache:
file_ttl: 0
index_ttl: 300
quay:
base_url: "https://quay.io"
type: "remote"
package: "docker"
description: "Quay.io container registry"
include_patterns:
- "^brancz/kube-rbac-proxy"
- "^cephcsi/cephcsi"
- "^jetstack/cert-manager-"
cache:
file_ttl: 0
index_ttl: 300
k8s-registry:
base_url: "https://registry.k8s.io"
type: "remote"
package: "docker"
description: "Kubernetes container registry"
include_patterns:
- "^external-dns/external-dns"
- "^sig-storage/"
cache:
file_ttl: 0
index_ttl: 300
gitlab:
base_url: "https://registry.gitlab.com"
type: "remote"
package: "docker"
description: "GitLab container registry"
include_patterns:
- "^purelb/purelb"
cache:
file_ttl: 0
index_ttl: 300
elastic:
base_url: "https://docker.elastic.co"
type: "remote"
package: "docker"
description: "Elastic container registry"
include_patterns:
- "^eck/eck-operator"
cache:
file_ttl: 0
index_ttl: 300
gcr:
base_url: "https://gcr.io"
type: "remote"
package: "docker"
description: "Google Container Registry"
include_patterns:
- "^k8s-staging-nfd/node-feature-discovery"
cache: cache:
file_ttl: 0 file_ttl: 0
index_ttl: 300 index_ttl: 300