-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: helm package produces reasonable sized chart
helm package was creating a chart up to 6MB. This happened because the .git folder was being included in the package.
- Loading branch information
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
charts/kube-prometheus-stack | ||
caas-cluster-monitoring-*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.pre-commit-config.yaml | ||
.github/* | ||
.github/* | ||
README.md* | ||
# needed else the whole git directory is packed in the chart | ||
.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
charts: | ||
chart: | ||
helm dependency update | ||
rm charts/hardenedKubelet-*.tgz | ||
rm charts/rke*.tgz | ||
helm package . | ||
|
||
.PHONY: charts | ||
.PHONY: chart |