From 6d9530b1ee2f5826469132c05f93d999404e2049 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sat, 23 May 2026 18:21:25 +1000 Subject: [PATCH] feat(artifactapi): add hashicorp/consul and hashicorp/vault to docker immutable patterns (#147) ## Summary - Adds \`^hashicorp/consul\` and \`^hashicorp/vault\` to the dockerhub immutable_patterns in artifactapi's remote-docker.yaml - Replaces the more specific \`^hashicorp/vault-secrets-operator\` pattern since \`^hashicorp/vault\` subsumes it - Required for the benvin/vault and benvin/consul branches (vault:2.0.1 and consul:1.22.7) ## Test plan - [ ] Verify artifactapi accepts requests for hashicorp/vault and hashicorp/consul images after merge Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/147 --- apps/base/artifactapi/resources/conf.d/remote-docker.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/base/artifactapi/resources/conf.d/remote-docker.yaml b/apps/base/artifactapi/resources/conf.d/remote-docker.yaml index 667cc7c..c19cde5 100644 --- a/apps/base/artifactapi/resources/conf.d/remote-docker.yaml +++ b/apps/base/artifactapi/resources/conf.d/remote-docker.yaml @@ -30,7 +30,8 @@ remotes: - "^bitnami/" - "^curlimages/curl" - "^emberstack/kubernetes-reflector" - - "^hashicorp/vault-secrets-operator" + - "^hashicorp/consul" + - "^hashicorp/vault" - "^jfrog/" - "^rancher/" - "^traefik/"