Skip to content

Commit 46a85a8

Browse files
authored
Propagate chart version to regcache dependency in ace-installer (#1299)
The contents-% target bumps a subchart's version and updates the matching dependency constraint in ace, acaas, and platform-opscenter. But regcache is a dependency only of ace-installer and ace-installer-certified, which were missing from the list. As a result, bumping regcache (via make update-charts) left ace-installer's dependency pinned to the previous version, so 'helm dependency update charts/ace-installer' failed with: can't get a valid version for 1 subchart(s): "regcache" (repository "file://../regcache", version "v2026.6.19") Add ace-installer and ace-installer-certified to the propagation list. Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent 8028dd4 commit 46a85a8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ contents-%:
246246
yq -y --indentless -i '.dependencies |= map(select(.name == "$*").version="$(CHART_VERSION)")' ./charts/ace/Chart.yaml; \
247247
yq -y --indentless -i '.dependencies |= map(select(.name == "$*").version="$(CHART_VERSION)")' ./charts/acaas/Chart.yaml; \
248248
yq -y --indentless -i '.dependencies |= map(select(.name == "$*").version="$(CHART_VERSION)")' ./charts/platform-opscenter/Chart.yaml; \
249+
yq -y --indentless -i '.dependencies |= map(select(.name == "$*").version="$(CHART_VERSION)")' ./charts/ace-installer/Chart.yaml; \
250+
yq -y --indentless -i '.dependencies |= map(select(.name == "$*").version="$(CHART_VERSION)")' ./charts/ace-installer-certified/Chart.yaml; \
249251
fi
250252
@if [ -n "$(APP_VERSION)" ]; then \
251253
yq -y --indentless -i '.appVersion="$(APP_VERSION)"' ./charts/$*/Chart.yaml; \

0 commit comments

Comments
 (0)