Skip to content

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
Signed-off-by: Mayank Shah <[email protected]>
  • Loading branch information
mayankshah1607 committed Nov 18, 2024
1 parent 42409b4 commit 44473d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/everest/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
prepare-chart:
prepare-chart: deps
CHART_FILES="Chart.yaml ./charts/everest-db-namespace/Chart.yaml"; \
for chart in $$CHART_FILES; do \
yq eval -i '.version = "${VERSION}"' $$chart; \
Expand All @@ -8,7 +8,6 @@ prepare-chart:
yq eval -i '.olm.catalogSourceImage = "$(IMAGE_PREFIX)/everest-catalog"' values.yaml
yq eval -i '.operator.image = "$(IMAGE_PREFIX)/everest-operator"' values.yaml
yq eval -i '(.dependencies[] | select(.name == "everest-db-namespace")).version = "${VERSION}"' Chart.yaml
helm dependency update .


release: IMAGE_PREFIX=percona
Expand All @@ -18,6 +17,7 @@ release-dev: IMAGE_PREFIX=perconalab
release-dev: prepare-chart

deps:
helm repo add vm https://victoriametrics.github.io/helm-charts
helm dependency update .
helm dependency update ./charts/everest-db-namespace

Expand Down

0 comments on commit 44473d2

Please sign in to comment.