├── .github ├── ISSUE_TEMPLATE │ ├── bug.yaml │ └── feature.yaml ├── dependabot.yml └── workflows │ ├── lint_test_charts.yaml │ └── release.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── charts └── icinga-stack ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── README.md ├── charts ├── icinga-kubernetes │ ├── Chart.yaml │ ├── templates │ │ ├── _config.tpl │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── icinga2 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _core_config.tpl │ │ ├── _env_secrets.tpl │ │ ├── _helpers.tpl │ │ ├── _secret_mounts.tpl │ │ ├── _secret_volumes.tpl │ │ ├── configmaps.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── icingadb │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── serviceaccount.yaml │ └── values.yaml └── icingaweb2 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── _icingaweb-config.tpl │ ├── _resources.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── docs └── configuration.md ├── templates ├── _helpers.tpl ├── internal-databases.yaml ├── redis.yaml └── tests │ └── test-connection.yaml ├── tests ├── global_database_statefulset_test.yaml ├── global_redis_statefulset_test.yaml ├── icinga-kubernetes_clusterrole_test.yaml ├── icinga-kubernetes_clusterrolebinding_test.yaml ├── icinga-kubernetes_serviceaccount_test.yaml ├── icinga2_configmaps_test.yaml ├── icinga2_ingress_test.yaml ├── icinga2_statefulset_test.yaml ├── icingadb_deployment_test.yaml ├── icingaweb2_deployment_test.yaml ├── icingaweb2_ingress_test.yaml ├── required_values.yaml └── required_values_secrets.yaml └── values.yaml /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint_test_charts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/.github/workflows/lint_test_charts.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/icinga-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/.helmignore -------------------------------------------------------------------------------- /charts/icinga-stack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/Chart.lock -------------------------------------------------------------------------------- /charts/icinga-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/Chart.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/README.md -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/Chart.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/templates/_config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/templates/_config.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga-kubernetes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga-kubernetes/values.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/.helmignore -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/Chart.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/_core_config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/_core_config.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/_env_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/_env_secrets.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/_secret_mounts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/_secret_mounts.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/_secret_volumes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/_secret_volumes.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/configmaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/configmaps.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/service.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icinga2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icinga2/values.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingadb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingadb/.helmignore -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingadb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingadb/Chart.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingadb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingadb/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingadb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingadb/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingadb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingadb/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingadb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingadb/values.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/.helmignore -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/Chart.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/templates/_icingaweb-config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/templates/_icingaweb-config.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/templates/_resources.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/templates/service.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/charts/icingaweb2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/charts/icingaweb2/values.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/docs/configuration.md -------------------------------------------------------------------------------- /charts/icinga-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/icinga-stack/templates/internal-databases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/templates/internal-databases.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/templates/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/templates/redis.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/global_database_statefulset_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/global_database_statefulset_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/global_redis_statefulset_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/global_redis_statefulset_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icinga-kubernetes_clusterrole_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icinga-kubernetes_clusterrole_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icinga-kubernetes_clusterrolebinding_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icinga-kubernetes_clusterrolebinding_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icinga-kubernetes_serviceaccount_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icinga-kubernetes_serviceaccount_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icinga2_configmaps_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icinga2_configmaps_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icinga2_ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icinga2_ingress_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icinga2_statefulset_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icinga2_statefulset_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icingadb_deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icingadb_deployment_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icingaweb2_deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icingaweb2_deployment_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/icingaweb2_ingress_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/icingaweb2_ingress_test.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/required_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/required_values.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/tests/required_values_secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/tests/required_values_secrets.yaml -------------------------------------------------------------------------------- /charts/icinga-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/helm-charts/HEAD/charts/icinga-stack/values.yaml --------------------------------------------------------------------------------