├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .helmignore ├── CONTRIBUTING.md ├── Chart.yaml ├── LICENSE ├── Makefile ├── README.md ├── README.md.gotmpl ├── docs ├── README.md ├── example │ ├── README.md │ └── kind │ │ └── values.yaml └── requirements.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configmap-zabbix-server-init-waitschema.yaml ├── cronjob-hanodes-autoclean.yaml ├── deployment-zabbix-server.yaml ├── deployment-zabbix-web.yaml ├── deployment-zabbix-webservice.yaml ├── ingress.yaml ├── ingressroute.yml ├── job-init-db-schema.yaml ├── route.yaml ├── secret-db-access.yaml ├── service.yaml ├── statefulset-postgresql.yaml └── statefulset-zabbix-proxy.yaml └── values.yaml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @aeciopires @sa-ChristianAnton 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/.gitignore -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/.helmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/README.md -------------------------------------------------------------------------------- /README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/README.md.gotmpl -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/docs/example/README.md -------------------------------------------------------------------------------- /docs/example/kind/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/docs/example/kind/values.yaml -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/configmap-zabbix-server-init-waitschema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/configmap-zabbix-server-init-waitschema.yaml -------------------------------------------------------------------------------- /templates/cronjob-hanodes-autoclean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/cronjob-hanodes-autoclean.yaml -------------------------------------------------------------------------------- /templates/deployment-zabbix-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/deployment-zabbix-server.yaml -------------------------------------------------------------------------------- /templates/deployment-zabbix-web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/deployment-zabbix-web.yaml -------------------------------------------------------------------------------- /templates/deployment-zabbix-webservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/deployment-zabbix-webservice.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/ingressroute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/ingressroute.yml -------------------------------------------------------------------------------- /templates/job-init-db-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/job-init-db-schema.yaml -------------------------------------------------------------------------------- /templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/route.yaml -------------------------------------------------------------------------------- /templates/secret-db-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/secret-db-access.yaml -------------------------------------------------------------------------------- /templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/service.yaml -------------------------------------------------------------------------------- /templates/statefulset-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/statefulset-postgresql.yaml -------------------------------------------------------------------------------- /templates/statefulset-zabbix-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/templates/statefulset-zabbix-proxy.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetic/helm-zabbix/HEAD/values.yaml --------------------------------------------------------------------------------