This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from sa-ChristianAnton/zabbix-6-features
Zabbix 6 related features / improvements of the chart
- Loading branch information
Showing
23 changed files
with
1,107 additions
and
383 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,9 +1,12 @@ | ||
*.tgz | ||
packages/ | ||
|
||
# Helm Charts dependencies | ||
/charts | ||
*.lock | ||
|
||
.DS_Store | ||
|
||
.idea | ||
|
||
.vscode |
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 |
---|---|---|
|
@@ -25,3 +25,9 @@ | |
|
||
.circleci/ | ||
docs/ | ||
|
||
# Makefile and other stuff | ||
Makefile | ||
CONTRIBUTING.md | ||
README.md.gotmpl | ||
packages/ |
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
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
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
URL=https://github.com/cetic/helm-zabbix/ | ||
HELM_IMAGE=alpine/helm:3.9.0 | ||
HELM_DOCS_IMAGE=jnorwood/helm-docs:v1.10.0 | ||
KNOWN_TARGETS=helm | ||
|
||
|
||
helm: | ||
docker run --rm --name helm-exec \ | ||
--user $(shell id -u):$(shell id -g) \ | ||
--mount type=bind,src="$(shell pwd)",dst=/helm-chart \ | ||
-w /helm-chart \ | ||
-e HELM_CACHE_HOME=/helm-chart/.helm/cache \ | ||
-e HELM_CONFIG_HOME=/helm-chart/.helm/config \ | ||
-e HELM_DATA_HOME=/helm-chart/.helm/data \ | ||
$(HELM_IMAGE) \ | ||
$(CMD) | ||
|
||
# Run linter for helm chart | ||
lint: | ||
CMD="lint ." $(MAKE) helm | ||
|
||
# Package chart into zip file | ||
package: | ||
CMD="package . -d packages" $(MAKE) helm | ||
|
||
gen-docs: | ||
docker run --rm --name helm-docs \ | ||
--user $(shell id -u):$(shell id -g) \ | ||
--mount type=bind,src="$(shell pwd)",dst=/helm-chart \ | ||
-w /helm-chart \ | ||
$(HELM_DOCS_IMAGE) \ | ||
helm-docs | ||
|
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
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
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
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
Oops, something went wrong.