Skip to content

Commit

Permalink
Merge pull request #971 from evankanderson/bump-chart-versions
Browse files Browse the repository at this point in the history
Sequentially tag helm charts, rather than re-using the 0.1.0 version
  • Loading branch information
JAORMX authored Sep 16, 2023
2 parents 721b465 + 1591c84 commit e29b900
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ COMPOSE_ARGS?=-d
KO_DOCKER_REPO?=ko.local
KO_PUSH_IMAGE?=false
KO_PLATFORMS=linux/amd64,linux/arm64
HELM_PACKAGE_VERSION?=0.1.0

default: help

Expand Down Expand Up @@ -83,7 +84,7 @@ helm: ## build the helm chart to a local archive, using ko for the image build
cd deployment/helm; rm -f templates/combined.yml && \
ko resolve --platform=${KO_PLATFORMS} --base-import-paths --push=${KO_PUSH_IMAGE} -f templates/ > templates/combined.yml && \
helm dependency update && \
helm package .
helm package --version="${HELM_PACKAGE_VERSION}" .

bootstrap: ## install build deps
go generate -tags tools tools/tools.go
Expand Down
6 changes: 3 additions & 3 deletions deployment/helm/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.9.0
digest: sha256:79214ee1797422ecbe045584630381194bf225ce0545acc0a07b6fc874ce8aad
generated: "2023-08-22T16:15:09.700899-07:00"
version: 2.11.1
digest: sha256:93eb2b5ceb4b11b640702566c1f8fce26ce636757d3a47a45e6c47057143a3d5
generated: "2023-09-15T13:16:40.928684-07:00"

0 comments on commit e29b900

Please sign in to comment.