From 5252dc2a02b90e71a9c432b836f57ec70615fc18 Mon Sep 17 00:00:00 2001 From: ralongit Date: Tue, 18 Jun 2024 15:34:56 +0300 Subject: [PATCH 1/7] Upgrade opentelemetry image to v0.102.1 - Upgrade `logzio-k8s-telemetry` and `logzio-logs-colector charts` sub charts image version to `v0.102.1` --- charts/logzio-logs-collector/Chart.yaml | 4 ++-- charts/logzio-telemetry/Chart.yaml | 4 ++-- charts/logzio-telemetry/values.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/logzio-logs-collector/Chart.yaml b/charts/logzio-logs-collector/Chart.yaml index 87aee88d..c57e4ebd 100644 --- a/charts/logzio-logs-collector/Chart.yaml +++ b/charts/logzio-logs-collector/Chart.yaml @@ -1,10 +1,10 @@ apiVersion: v2 name: logzio-logs-collector -version: 1.0.4 +version: 1.0.5 description: kubernetes logs collection agent for logz.io based on opentelemetry collector type: application home: https://logz.io/ maintainers: - name: yotam loewenbach email: yotam.loewenbach@logz.io -appVersion: 0.80.0 +appVersion: 0.102.1 diff --git a/charts/logzio-telemetry/Chart.yaml b/charts/logzio-telemetry/Chart.yaml index 1d133ee1..cc618640 100644 --- a/charts/logzio-telemetry/Chart.yaml +++ b/charts/logzio-telemetry/Chart.yaml @@ -24,12 +24,12 @@ dependencies: # 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: 4.2.3 +version: 4.2.4 # 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. -appVersion: 0.97.0 +appVersion: 0.102.1 maintainers: - name: yotamloe email: yotam.loewenbach@logz.io diff --git a/charts/logzio-telemetry/values.yaml b/charts/logzio-telemetry/values.yaml index 59023b32..759f2850 100644 --- a/charts/logzio-telemetry/values.yaml +++ b/charts/logzio-telemetry/values.yaml @@ -494,7 +494,7 @@ image: repository: otel/opentelemetry-collector-contrib pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "0.97.0" + tag: "0.102.1" nginxWindowsImage: # Reverse proxy image to enable metrics scraping from windows nodes repository: logzio/logzio-windows-node-reverse-proxy @@ -508,7 +508,7 @@ windowsExporterInstallerImage: spmImage: repository: otel/opentelemetry-collector-contrib pullPolicy: IfNotPresent - tag: "0.97.0" + tag: "0.102.1" imagePullSecrets: [] # OpenTelemetry Collector executable From 3bd022b0b5005314fbc00fd85d0558a3157ea17a Mon Sep 17 00:00:00 2001 From: Ral G <39119258+ralongit@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:17:30 +0300 Subject: [PATCH 2/7] Revert `logzio-logs-collector` - Test fails due to bug in the exporter - https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/33231 --- charts/logzio-logs-collector/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/logzio-logs-collector/Chart.yaml b/charts/logzio-logs-collector/Chart.yaml index c57e4ebd..87aee88d 100644 --- a/charts/logzio-logs-collector/Chart.yaml +++ b/charts/logzio-logs-collector/Chart.yaml @@ -1,10 +1,10 @@ apiVersion: v2 name: logzio-logs-collector -version: 1.0.5 +version: 1.0.4 description: kubernetes logs collection agent for logz.io based on opentelemetry collector type: application home: https://logz.io/ maintainers: - name: yotam loewenbach email: yotam.loewenbach@logz.io -appVersion: 0.102.1 +appVersion: 0.80.0 From 35b059a8361ade17b4cbbc3fe63f1130a6853e8b Mon Sep 17 00:00:00 2001 From: Ral G <39119258+ralongit@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:20:23 +0300 Subject: [PATCH 3/7] Update changelog --- charts/logzio-telemetry/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/logzio-telemetry/README.md b/charts/logzio-telemetry/README.md index 729d5f66..8a0957f5 100644 --- a/charts/logzio-telemetry/README.md +++ b/charts/logzio-telemetry/README.md @@ -412,6 +412,8 @@ If you don't want the sub charts to installed add the relevant flag per sub char ## Change log +* 4.2.4 + - Upgrade `otel/opentelemetry-collector-contrib` image to `v0.102.1` * 4.2.3 - Disable Kubernetes objects receiver by default. * 4.2.2 From 3d06dd0e20351f5999c9b111ee9c8f647812a822 Mon Sep 17 00:00:00 2001 From: Ral G <39119258+ralongit@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:22:41 +0300 Subject: [PATCH 4/7] Update telemetry chart test trigger path --- .github/workflows/logzio-telemetry-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/logzio-telemetry-test.yaml b/.github/workflows/logzio-telemetry-test.yaml index 2f93969c..71c5ee40 100644 --- a/.github/workflows/logzio-telemetry-test.yaml +++ b/.github/workflows/logzio-telemetry-test.yaml @@ -5,7 +5,7 @@ on: branches: - master paths: - - 'charts/logzio-k8s-telemetry/**' + - 'charts/logzio-telemetry/**' jobs: test-helm-chart: name: Test Helm Chart on Kind From 8b6ab703b92335763bdb5bec7a9629845790f461 Mon Sep 17 00:00:00 2001 From: ralongit Date: Tue, 18 Jun 2024 15:34:56 +0300 Subject: [PATCH 5/7] Upgrade opentelemetry image to v0.102.1 - Upgrade `logzio-k8s-telemetry` and `logzio-logs-colector charts` sub charts image version to `v0.102.1` --- charts/logzio-logs-collector/Chart.yaml | 4 ++-- charts/logzio-telemetry/Chart.yaml | 4 ++-- charts/logzio-telemetry/values.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/logzio-logs-collector/Chart.yaml b/charts/logzio-logs-collector/Chart.yaml index 87aee88d..c57e4ebd 100644 --- a/charts/logzio-logs-collector/Chart.yaml +++ b/charts/logzio-logs-collector/Chart.yaml @@ -1,10 +1,10 @@ apiVersion: v2 name: logzio-logs-collector -version: 1.0.4 +version: 1.0.5 description: kubernetes logs collection agent for logz.io based on opentelemetry collector type: application home: https://logz.io/ maintainers: - name: yotam loewenbach email: yotam.loewenbach@logz.io -appVersion: 0.80.0 +appVersion: 0.102.1 diff --git a/charts/logzio-telemetry/Chart.yaml b/charts/logzio-telemetry/Chart.yaml index 1d133ee1..cc618640 100644 --- a/charts/logzio-telemetry/Chart.yaml +++ b/charts/logzio-telemetry/Chart.yaml @@ -24,12 +24,12 @@ dependencies: # 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: 4.2.3 +version: 4.2.4 # 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. -appVersion: 0.97.0 +appVersion: 0.102.1 maintainers: - name: yotamloe email: yotam.loewenbach@logz.io diff --git a/charts/logzio-telemetry/values.yaml b/charts/logzio-telemetry/values.yaml index 59023b32..759f2850 100644 --- a/charts/logzio-telemetry/values.yaml +++ b/charts/logzio-telemetry/values.yaml @@ -494,7 +494,7 @@ image: repository: otel/opentelemetry-collector-contrib pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "0.97.0" + tag: "0.102.1" nginxWindowsImage: # Reverse proxy image to enable metrics scraping from windows nodes repository: logzio/logzio-windows-node-reverse-proxy @@ -508,7 +508,7 @@ windowsExporterInstallerImage: spmImage: repository: otel/opentelemetry-collector-contrib pullPolicy: IfNotPresent - tag: "0.97.0" + tag: "0.102.1" imagePullSecrets: [] # OpenTelemetry Collector executable From 78582033de705836c191b6044ebb8c95229f73c2 Mon Sep 17 00:00:00 2001 From: Ral G <39119258+ralongit@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:17:30 +0300 Subject: [PATCH 6/7] Revert `logzio-logs-collector` - Test fails due to bug in the exporter - https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/33231 --- charts/logzio-logs-collector/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/logzio-logs-collector/Chart.yaml b/charts/logzio-logs-collector/Chart.yaml index c57e4ebd..87aee88d 100644 --- a/charts/logzio-logs-collector/Chart.yaml +++ b/charts/logzio-logs-collector/Chart.yaml @@ -1,10 +1,10 @@ apiVersion: v2 name: logzio-logs-collector -version: 1.0.5 +version: 1.0.4 description: kubernetes logs collection agent for logz.io based on opentelemetry collector type: application home: https://logz.io/ maintainers: - name: yotam loewenbach email: yotam.loewenbach@logz.io -appVersion: 0.102.1 +appVersion: 0.80.0 From 461c149267a603165c3ded759fcfb4e1f4485768 Mon Sep 17 00:00:00 2001 From: Ral G <39119258+ralongit@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:20:23 +0300 Subject: [PATCH 7/7] Update changelog --- charts/logzio-telemetry/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/logzio-telemetry/README.md b/charts/logzio-telemetry/README.md index 729d5f66..8a0957f5 100644 --- a/charts/logzio-telemetry/README.md +++ b/charts/logzio-telemetry/README.md @@ -412,6 +412,8 @@ If you don't want the sub charts to installed add the relevant flag per sub char ## Change log +* 4.2.4 + - Upgrade `otel/opentelemetry-collector-contrib` image to `v0.102.1` * 4.2.3 - Disable Kubernetes objects receiver by default. * 4.2.2