From ad23ee12ede37f8c5fa1a3ad2d06981413c58118 Mon Sep 17 00:00:00 2001 From: Arnob kumar saha Date: Fri, 21 Aug 2026 12:57:06 +0600 Subject: [PATCH] ace-up: list the acaas chart in catalog/ace.yaml catalog/ace.yaml is the chart list an air-gapped ACE mirror pulls from, and acaas -- the ACE Hosted Service umbrella chart (billing, billing-ui, marketplace-api/ui, deploy-ui, platform-links, website) -- was missing from it, so the chart itself never got mirrored. Its subchart images are already covered by appscode-cloud/installer's catalog/imagelist.yaml; only the chart artifact was absent. It is published to ghcr.io/appscode-charts at the b3 tag like the other three entries, so pin it the same way. Signed-off-by: Arnob kumar saha --- pkg/cmds/ace_up.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cmds/ace_up.go b/pkg/cmds/ace_up.go index 8f4768277..4c171eeb2 100644 --- a/pkg/cmds/ace_up.go +++ b/pkg/cmds/ace_up.go @@ -135,6 +135,7 @@ func NewCmdAceUp() *cobra.Command { aceMap["ghcr.io/appscode-charts/ace-installer"] = []string{tagB3} aceMap["ghcr.io/appscode-charts/ace"] = []string{tagB3} aceMap["ghcr.io/appscode-charts/service-gateway"] = []string{tagB3} + aceMap["ghcr.io/appscode-charts/acaas"] = []string{tagB3} return write(ToImageList2(aceMap), filepath.Join(dir, "catalog", "ace.yaml")) },