We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3817675 commit 11c8edbCopy full SHA for 11c8edb
Makefile
@@ -4,3 +4,15 @@ test:
4
template:
5
helm template --debug --output-dir=./tmp/ -n customer-monitoring-system --set-file script_py=./examples/s3-metrics.py -f ./tmp/values.test.yaml s3-metrics ./helm
6
7
+chart_release:
8
+ git checkout gh-pages
9
+ git merge main
10
+ git commit -m "merged"
11
+ helm package ./helm
12
+ helm repo index
13
+ git add .
14
+ git commit -m "update chart"
15
+ git push origin gh-pages
16
+ git checkout main
17
+
18
+.PHONY: test template chart_release
README.md
@@ -1,3 +1,7 @@
1
# Python-AWS-Exporter-
2
3
Base image for Python scripts exporting AWS resources using boto library to Prometheus
+TODO:
+Automated chart release, till then run `mk chart_release`.
0 commit comments