Skip to content

Commit

Permalink
feat(ci): add helm version invocation before each helm invocation on …
Browse files Browse the repository at this point in the history
…CI (#1980)
  • Loading branch information
pmalek authored Dec 14, 2021
1 parent 055e5ff commit 9798f33
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ mdl:
deploy/docs \
CHANGELOG.md

helm-dependency-update:
.PHONY: helm-version
helm-version:
helm version

.PHONY: helm-dependency-update
helm-dependency-update: helm-version
helm dependency update deploy/helm/sumologic

helm-lint:
.PHONY: helm-lint
helm-lint: helm-version
# TODO: we should add back the --strict flag but because we have made the PodDisruptionBudget
# API version dependent on cluster capabilities and because helm lint does not accept
# an --api-versions flag like helm template does we cannot make this configurable.
Expand Down

0 comments on commit 9798f33

Please sign in to comment.