forked from SumoLogic/sumologic-kubernetes-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (33 loc) · 944 Bytes
/
Makefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
lint: shellcheck markdownlint helm-lint yamllint markdown-links-lint markdown-table-formatter-check
shellcheck:
./ci/shellcheck.sh
test:
./ci/tests.sh
push-helm-chart:
./ci/push-helm-chart.sh
markdownlint: mdl
mdl:
mdl --style .markdownlint/style.rb deploy/docs
helm-dependency-update:
helm dependency update deploy/helm/sumologic
helm-lint:
helm lint --strict \
--set sumologic.accessId=X \
--set sumologic.accessKey=X \
deploy/helm/sumologic/
helm lint --with-subcharts \
--set sumologic.accessId=X \
--set sumologic.accessKey=X \
deploy/helm/sumologic/ || true
yamllint:
yamllint -c .yamllint.yaml\
deploy/helm/sumologic/values.yaml \
vagrant/values.yaml
markdown-links-lint:
./ci/markdown_links_lint.sh
markdown-link-check:
./ci/markdown_link_check.sh
markdown-table-formatter-check:
./ci/markdown_table_formatter.sh --check
markdown-table-formatter-format:
./ci/markdown_table_formatter.sh --format