Skip to content

Commit 1c77c8f

Browse files
authored
fix version for e2e (#43)
Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com> On-behalf-of: @SAP karol.szwaj@sap.com
1 parent 5222879 commit 1c77c8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ chart-push: ## Push Helm chart to GHCR (after pushing multi-arch container imag
175175
charts: manifests generate ## Generate and package Helm chart with multi-arch image support. Always runs manifests first to ensure CRDs are up to date
176176
$(HELM) dependency update charts/example-httpbin-operator
177177
mkdir -p dist
178-
$(HELM) package charts/example-httpbin-operator -d dist
178+
$(HELM) package charts/example-httpbin-operator -d dist --version $(CHART_VERSION)
179179

180180
## OCM
181181

@@ -195,7 +195,7 @@ kind-test: kind-test-cleanup docker-build charts ## Create kind cluster, load im
195195
@echo "Loading operator image into kind..."
196196
$(KIND) load docker-image ${IMG} --name example-httpbin-operator
197197
@echo "Installing helm chart..."
198-
$(HELM) install example-httpbin-operator dist/example-httpbin-operator-0.0.0.tgz \
198+
$(HELM) install example-httpbin-operator dist/example-httpbin-operator-$(CHART_VERSION).tgz \
199199
--namespace example-httpbin-operator-system \
200200
--set image.tag=$(DOCKER_VERSION) \
201201
--create-namespace \

0 commit comments

Comments
 (0)