forked from gimlet-io/onechart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (23 loc) · 723 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (23 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.PHONY: all lint kubeval test package debug debug-ui
all: lint test package
lint:
helm lint charts/onechart/
helm lint charts/cron-job/
test:
helm dependency update charts/onechart
helm unittest charts/onechart
helm dependency update charts/cron-job
helm unittest charts/cron-job
package:
helm dependency update charts/onechart
helm package charts/onechart
mv onechart*.tgz docs
helm dependency update charts/cron-job
helm package charts/cron-job
mv cron-job*.tgz docs
debug:
helm dependency update charts/onechart
helm template my-release charts/onechart/ -f values.yaml --debug
debug-cron-job:
helm dependency update charts/cron-job
helm template charts/cron-job/ -f values-cron-job.yaml --debug