Skip to content

Commit

Permalink
Merge pull request #3 from qpoint-io/marc-barry/helm
Browse files Browse the repository at this point in the history
Add Helmify generation for a Helm chart.
  • Loading branch information
marc-barry authored Nov 10, 2023
2 parents f596518 + dafc99d commit 97a25b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ Dockerfile.cross

# temp files
tmp/

# Helmify
chart/
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -228,3 +228,13 @@ $(ENVTEST): $(LOCALBIN)
air: $(AIR) ## Download air locally if necessary.
$(AIR): $(LOCALBIN)
test -s $(LOCALBIN)/air || GOBIN=$(LOCALBIN) go install github.com/cosmtrek/air@latest

HELMIFY ?= $(LOCALBIN)/helmify

.PHONY: helmify
helmify: $(HELMIFY) ## Download helmify locally if necessary.
$(HELMIFY): $(LOCALBIN)
test -s $(LOCALBIN)/helmify || GOBIN=$(LOCALBIN) go install github.com/arttor/helmify/cmd/helmify@latest

helm: manifests kustomize helmify
$(KUSTOMIZE) build config/default | $(HELMIFY)

0 comments on commit 97a25b1

Please sign in to comment.