From 9ecd049a891733d673ecb2e66329faa48f330a7d Mon Sep 17 00:00:00 2001 From: Sander den Hollander Date: Thu, 30 Oct 2025 08:13:35 +0100 Subject: [PATCH 1/7] Fix links and wording --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 84a2820..bf66143 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,7 +25,7 @@ Charts can be templated locally using `helm template [!NOTE] > Some values might be required for templating to succeed. -> Simple dummy values are provided in [`charts/icinga-stack/tests/required-values.yaml`](./charts/icinga-stack/tests/required-values.yaml) for all charts. +> Simple dummy values are provided in [`charts/icinga-stack/tests/required-values.yaml`](./charts/icinga-stack/tests/required_values.yaml) for all charts. ```sh $ cd charts/icinga-stack @@ -36,11 +36,11 @@ $ helm template ./charts/icinga2 -f tests/required-values.yaml > icinga2-manifes ### Deploying the chart(s) locally -Charts can be installed and upgraded locally `helm install .` from their respective root directories: +Charts can be installed and upgraded locally using `helm install .` from their respective root directories: > [!NOTE] > Some values might be required for templating to succeed. -> Simple dummy values are provided in [`charts/icinga-stack/tests/required-values.yaml`](./charts/icinga-stack/tests/required-values.yaml) for all charts. +> Simple dummy values are provided in [`charts/icinga-stack/tests/required_values.yaml`](./charts/icinga-stack/tests/required_values.yaml) for all charts. ```sh $ helm install . -f tests/required-values.yaml From fd2e8515bcf18c8e7b813a070edb7bcb85be1d88 Mon Sep 17 00:00:00 2001 From: Sander den Hollander Date: Thu, 30 Oct 2025 08:13:35 +0100 Subject: [PATCH 2/7] Raise `Icinga 2` version --- charts/icinga-stack/charts/icinga2/Chart.yaml | 4 ++-- charts/icinga-stack/charts/icinga2/values.yaml | 2 +- charts/icinga-stack/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/icinga-stack/charts/icinga2/Chart.yaml b/charts/icinga-stack/charts/icinga2/Chart.yaml index 307ca09..1b4f028 100644 --- a/charts/icinga-stack/charts/icinga2/Chart.yaml +++ b/charts/icinga-stack/charts/icinga2/Chart.yaml @@ -19,10 +19,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.4.0 +version: 0.5.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "2.13.10" +appVersion: "2.15.1" diff --git a/charts/icinga-stack/charts/icinga2/values.yaml b/charts/icinga-stack/charts/icinga2/values.yaml index c1118dc..27aa928 100644 --- a/charts/icinga-stack/charts/icinga2/values.yaml +++ b/charts/icinga-stack/charts/icinga2/values.yaml @@ -1,6 +1,6 @@ image: repository: icinga/icinga2 - tag: 2.13.10 + tag: 2.15.1 pullPolicy: IfNotPresent imagePullSecrets: [] diff --git a/charts/icinga-stack/values.yaml b/charts/icinga-stack/values.yaml index 0034d3e..4e1ffaa 100644 --- a/charts/icinga-stack/values.yaml +++ b/charts/icinga-stack/values.yaml @@ -1,7 +1,7 @@ icinga2: image: repository: icinga/icinga2 - tag: 2.13.10 + tag: 2.15.1 pullPolicy: IfNotPresent imagePullSecrets: [] From deed63ebe7ce365ca7b1911bc323da0a4b330454 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 25 Nov 2025 09:17:24 +0100 Subject: [PATCH 3/7] Raise `Icinga DB` version --- charts/icinga-stack/charts/icingadb/Chart.yaml | 4 ++-- charts/icinga-stack/charts/icingadb/values.yaml | 2 +- charts/icinga-stack/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/icinga-stack/charts/icingadb/Chart.yaml b/charts/icinga-stack/charts/icingadb/Chart.yaml index 2b802cf..eb24010 100644 --- a/charts/icinga-stack/charts/icingadb/Chart.yaml +++ b/charts/icinga-stack/charts/icingadb/Chart.yaml @@ -19,10 +19,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.0 +version: 0.4.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.1.1" +appVersion: "1.5.0" diff --git a/charts/icinga-stack/charts/icingadb/values.yaml b/charts/icinga-stack/charts/icingadb/values.yaml index 1341413..b06b1e0 100644 --- a/charts/icinga-stack/charts/icingadb/values.yaml +++ b/charts/icinga-stack/charts/icingadb/values.yaml @@ -2,7 +2,7 @@ enabled: true image: repository: icinga/icingadb - tag: 1.1.1 + tag: 1.5.0 pullPolicy: IfNotPresent imagePullSecrets: [] diff --git a/charts/icinga-stack/values.yaml b/charts/icinga-stack/values.yaml index 4e1ffaa..3fd531a 100644 --- a/charts/icinga-stack/values.yaml +++ b/charts/icinga-stack/values.yaml @@ -311,7 +311,7 @@ icingadb: image: repository: icinga/icingadb - tag: 1.1.1 + tag: 1.5.0 pullPolicy: IfNotPresent imagePullSecrets: [] From 80f4aaee51eda573957a26802c482e33f25ea83b Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 25 Nov 2025 09:18:43 +0100 Subject: [PATCH 4/7] Raise `Icinga Web` version --- charts/icinga-stack/charts/icingaweb2/Chart.yaml | 4 ++-- charts/icinga-stack/charts/icingaweb2/values.yaml | 2 +- charts/icinga-stack/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/icinga-stack/charts/icingaweb2/Chart.yaml b/charts/icinga-stack/charts/icingaweb2/Chart.yaml index 8dee8ba..e99ac7a 100644 --- a/charts/icinga-stack/charts/icingaweb2/Chart.yaml +++ b/charts/icinga-stack/charts/icingaweb2/Chart.yaml @@ -19,10 +19,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.0 +version: 0.4.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "2.12.1" +appVersion: "2.12.6" diff --git a/charts/icinga-stack/charts/icingaweb2/values.yaml b/charts/icinga-stack/charts/icingaweb2/values.yaml index b8b1882..03cd43f 100644 --- a/charts/icinga-stack/charts/icingaweb2/values.yaml +++ b/charts/icinga-stack/charts/icingaweb2/values.yaml @@ -2,7 +2,7 @@ enabled: true image: repository: icinga/icingaweb2 - tag: 2.12.1 + tag: 2.12.6 pullPolicy: Always imagePullSecrets: [] diff --git a/charts/icinga-stack/values.yaml b/charts/icinga-stack/values.yaml index 3fd531a..1ee3b9b 100644 --- a/charts/icinga-stack/values.yaml +++ b/charts/icinga-stack/values.yaml @@ -365,7 +365,7 @@ icingaweb2: image: repository: icinga/icingaweb2 - tag: 2.12.1 + tag: 2.12.6 pullPolicy: Always imagePullSecrets: [] From ecb4d04b86077e0eb845929682d7562924790e39 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 25 Nov 2025 09:20:14 +0100 Subject: [PATCH 5/7] Raise `Icinga for Kubernetes` version --- charts/icinga-stack/charts/icinga-kubernetes/Chart.yaml | 4 ++-- charts/icinga-stack/charts/icinga-kubernetes/values.yaml | 2 +- charts/icinga-stack/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/icinga-stack/charts/icinga-kubernetes/Chart.yaml b/charts/icinga-stack/charts/icinga-kubernetes/Chart.yaml index 7e2e03e..9645e36 100644 --- a/charts/icinga-stack/charts/icinga-kubernetes/Chart.yaml +++ b/charts/icinga-stack/charts/icinga-kubernetes/Chart.yaml @@ -12,5 +12,5 @@ maintainers: url: https://icinga.com type: application -version: 0.4.0 -appVersion: "0.3.0" +version: 0.5.0 +appVersion: "0.4.0" diff --git a/charts/icinga-stack/charts/icinga-kubernetes/values.yaml b/charts/icinga-stack/charts/icinga-kubernetes/values.yaml index 6db6d91..ac9f082 100644 --- a/charts/icinga-stack/charts/icinga-kubernetes/values.yaml +++ b/charts/icinga-stack/charts/icinga-kubernetes/values.yaml @@ -2,7 +2,7 @@ enabled: true image: repository: icinga/icinga-kubernetes - tag: 0.3.0 + tag: 0.4.0 pullPolicy: IfNotPresent rbac: diff --git a/charts/icinga-stack/values.yaml b/charts/icinga-stack/values.yaml index 1ee3b9b..8f1efd6 100644 --- a/charts/icinga-stack/values.yaml +++ b/charts/icinga-stack/values.yaml @@ -504,7 +504,7 @@ icinga-kubernetes: image: repository: icinga/icinga-kubernetes - tag: 0.3.0 + tag: 0.4.0 pullPolicy: IfNotPresent rbac: From 14e6314f628d5167057a7ff9913a3b8b5d092f63 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 25 Nov 2025 09:22:21 +0100 Subject: [PATCH 6/7] Fix maintainers --- .github/ISSUE_TEMPLATE/bug.yaml | 2 -- .github/ISSUE_TEMPLATE/feature.yaml | 2 -- charts/icinga-stack/Chart.yaml | 6 +++--- charts/icinga-stack/charts/icinga2/Chart.yaml | 6 +++--- charts/icinga-stack/charts/icingadb/Chart.yaml | 6 +++--- charts/icinga-stack/charts/icingaweb2/Chart.yaml | 6 +++--- 6 files changed, 12 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 954a7d4..f67d892 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -2,8 +2,6 @@ name: Bug Report description: File a bug report title: "[Bug]: " labels: ["bug", "triage"] -assignees: - - mocdaniel body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index 3c3c1a1..21731ea 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -2,8 +2,6 @@ name: Feature Request description: Request a feature or enhancement title: "[Feature]: " labels: ["feature", "triage"] -assignees: - - mocdaniel body: - type: markdown attributes: diff --git a/charts/icinga-stack/Chart.yaml b/charts/icinga-stack/Chart.yaml index b178a9a..f5fc2a0 100644 --- a/charts/icinga-stack/Chart.yaml +++ b/charts/icinga-stack/Chart.yaml @@ -7,9 +7,9 @@ apiVersion: v2 name: icinga-stack description: Icinga is a monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting. maintainers: - - name: Daniel Bodky - email: daniel.bodky@netways.de - url: https://github.com/mocdaniel + - name: Icinga GmbH + email: info@icinga.com + url: https://icinga.com # A chart can be either an 'application' or a 'library' chart. # diff --git a/charts/icinga-stack/charts/icinga2/Chart.yaml b/charts/icinga-stack/charts/icinga2/Chart.yaml index 1b4f028..883a29c 100644 --- a/charts/icinga-stack/charts/icinga2/Chart.yaml +++ b/charts/icinga-stack/charts/icinga2/Chart.yaml @@ -2,9 +2,9 @@ apiVersion: v2 name: icinga2 description: Icinga is a monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting. maintainers: - - name: Daniel Bodky - email: daniel.bodky@netways.de - url: https://github.com/mocdaniel + - name: Icinga GmbH + email: info@icinga.com + url: https://icinga.com # A chart can be either an 'application' or a 'library' chart. # diff --git a/charts/icinga-stack/charts/icingadb/Chart.yaml b/charts/icinga-stack/charts/icingadb/Chart.yaml index eb24010..c1978de 100644 --- a/charts/icinga-stack/charts/icingadb/Chart.yaml +++ b/charts/icinga-stack/charts/icingadb/Chart.yaml @@ -2,9 +2,9 @@ apiVersion: v2 name: icingadb description: Icinga DB is a set of components for publishing, synchronizing and visualizing monitoring data in the Icinga ecosystem. maintainers: - - name: Daniel Bodky - email: daniel.bodky@netways.de - url: https://github.com/mocdaniel + - name: Icinga GmbH + email: info@icinga.com + url: https://icinga.com # A chart can be either an 'application' or a 'library' chart. # diff --git a/charts/icinga-stack/charts/icingaweb2/Chart.yaml b/charts/icinga-stack/charts/icingaweb2/Chart.yaml index e99ac7a..44225bc 100644 --- a/charts/icinga-stack/charts/icingaweb2/Chart.yaml +++ b/charts/icinga-stack/charts/icingaweb2/Chart.yaml @@ -2,9 +2,9 @@ apiVersion: v2 name: icingaweb2 description: Icinga Web 2 is a powerful PHP framework for web applications that comes in a clean and reduced design. maintainers: - - name: Daniel Bodky - email: daniel.bodky@netways.de - url: https://github.com/mocdaniel + - name: Icinga GmbH + email: info@icinga.com + url: https://icinga.com # A chart can be either an 'application' or a 'library' chart. # From bd6c0950e9fda27fff11251a0f3c4e5c320deb22 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 25 Nov 2025 09:23:31 +0100 Subject: [PATCH 7/7] Raise `icinga-stack` version --- charts/icinga-stack/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/icinga-stack/Chart.yaml b/charts/icinga-stack/Chart.yaml index f5fc2a0..01d5fa9 100644 --- a/charts/icinga-stack/Chart.yaml +++ b/charts/icinga-stack/Chart.yaml @@ -24,10 +24,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.6.0 +version: 0.7.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.6.0" +appVersion: "0.7.0"