From 40443280984a2446977a58578fc474e0f19c5f0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Vol=C3=A1k?= Date: Thu, 3 Oct 2024 14:27:39 +0200 Subject: [PATCH] [performance-monitor] Release for version 7.0 (#430) Co-authored-by: Jozef Volak Co-authored-by: JumasJM <108924588+JumasJM@users.noreply.github.com> --- charts/performance-monitor/Chart.yaml | 12 ++++++------ charts/performance-monitor/README.md | 6 ++---- charts/performance-monitor/values.yaml | 3 ++- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/charts/performance-monitor/Chart.yaml b/charts/performance-monitor/Chart.yaml index 2d2a3b04..c632d25d 100644 --- a/charts/performance-monitor/Chart.yaml +++ b/charts/performance-monitor/Chart.yaml @@ -3,8 +3,8 @@ name: performance-monitor description: FRINX Performance Monitor chart for FRINX-machine icon: https://avatars.githubusercontent.com/u/23452093?s=200&v=4 type: application -version: 0.1.5 -appVersion: "6.0.2" +version: 2.0.0 +appVersion: "7.0.1" dependencies: - condition: postgresql.enabled name: postgresql @@ -21,10 +21,10 @@ maintainers: annotations: artifacthub.io/images: | - name: performance-monitor - image: frinx/performance-monitor:6.0.2 + image: frinx/performance-monitor:7.0.1 artifacthub.io/changes: | - - kind: fixed - description: performance-monitor db_ready checks are performed using custom utilities image + - kind: changed + description: update for 7.0 release links: - name: GitHub PR - url: https://github.com/FRINXio/helm-charts/pull/408 + url: https://github.com/FRINXio/helm-charts/pull/430 diff --git a/charts/performance-monitor/README.md b/charts/performance-monitor/README.md index bb4a2aee..edc20088 100644 --- a/charts/performance-monitor/README.md +++ b/charts/performance-monitor/README.md @@ -2,7 +2,7 @@ FRINX Performance Monitor chart for FRINX-machine -![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.0.2](https://img.shields.io/badge/AppVersion-6.0.2-informational?style=flat-square) +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 7.0.1](https://img.shields.io/badge/AppVersion-7.0.1-informational?style=flat-square) ## Get Repo Info @@ -50,7 +50,7 @@ helm uninstall [RELEASE_NAME] | dbPersistence.POSTGRES_PORT | int | `5432` | Database port | | dbPersistence.POSTGRES_USERNAME | string | `"postgresU"` | Database username. Exposed when existing dbPersistence.existingSecret.secretName is empty | | dbPersistence.existingSecret | object | `{"postgresPasswordKey":null,"postgresUsernameKey":null}` | Existing database credentials | -| env | object | `{"PM_KAFKA__BOOTSTRAP_SERVERS":"[\"kafka:9092\"]","PM_KAFKA__TOPICS__DEVICE_INVENTORY_TOPIC":"device-inventory"}` | Application environment variables | +| env | object | `{"PM_KAFKA__BOOTSTRAP_SERVERS":"[\"kafka:9092\"]","PM_KAFKA__TOPICS__DEVICE_INVENTORY_TOPIC":"device-inventory","PM_KAFKA__TOPICS__METRICS_TOPICS":"[\"gnmi-notifications\", \"workflow-notifications\"]"}` | Application environment variables | | fullnameOverride | string | `""` | String to partially override app name | | image.pullPolicy | string | `"IfNotPresent"` | Image pull policy | | image.repository | string | `"frinx/performance-monitor"` | Performance Monitor image repository | @@ -90,5 +90,3 @@ helm uninstall [RELEASE_NAME] | volumeMounts | list | `[]` | Additional volumeMounts on the output Deployment definition. | | volumes | list | `[]` | Additional volumes on the output Deployment definition. | ----------------------------------------------- -Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2) diff --git a/charts/performance-monitor/values.yaml b/charts/performance-monitor/values.yaml index 6e1c23f2..dc12857a 100644 --- a/charts/performance-monitor/values.yaml +++ b/charts/performance-monitor/values.yaml @@ -222,6 +222,7 @@ initContainersUrl: # -- Application environment variables env: # @ignored - PM_KAFKA__TOPICS__GNMI_NOTIFICATIONS_TOPIC: gnmi-notifications + PM_KAFKA__TOPICS__UNIFIED_METRICS_TOPIC: unified-metrics + PM_KAFKA__TOPICS__METRICS_TOPICS: '["gnmi-notifications", "workflow-notifications"]' PM_KAFKA__TOPICS__DEVICE_INVENTORY_TOPIC: device-inventory PM_KAFKA__BOOTSTRAP_SERVERS: '["kafka:9092"]'