From 8c45246cb95f639653ba4ec329a7a32e011673fc Mon Sep 17 00:00:00 2001 From: Bulat Saifullin Date: Fri, 14 Jun 2024 18:42:44 +0300 Subject: [PATCH] [telemetry] update default values (#346) update default values --- charts/substrate-telemetry/Chart.yaml | 2 +- charts/substrate-telemetry/README.md | 7 +++---- charts/substrate-telemetry/values.yaml | 4 ++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/charts/substrate-telemetry/Chart.yaml b/charts/substrate-telemetry/Chart.yaml index 70f1f0d3..4dfc63d0 100644 --- a/charts/substrate-telemetry/Chart.yaml +++ b/charts/substrate-telemetry/Chart.yaml @@ -15,7 +15,7 @@ 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: "2.3.2" +version: "2.3.3" # 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 diff --git a/charts/substrate-telemetry/README.md b/charts/substrate-telemetry/README.md index b4208094..47611fd3 100644 --- a/charts/substrate-telemetry/README.md +++ b/charts/substrate-telemetry/README.md @@ -20,7 +20,7 @@ This is intended behaviour. Make sure to run `git add -A` once again to stage ch The helm chart installs Telemetry-Core, Telemetry-Shard and Telemetry-Frontend services. -![Version: 2.3.2](https://img.shields.io/badge/Version-2.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) +![Version: 2.3.3](https://img.shields.io/badge/Version-2.3.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) ## Maintainers @@ -67,10 +67,9 @@ By default, the type of Kubernetes service used for Telemetry-Core, Telemetry-Sh | autoscaling.shard.maxReplicas | int | `6` | Maximum number of replicas | | autoscaling.shard.minReplicas | int | `2` | Minimum number of replicas | | autoscaling.shard.targetCPUUtilizationPercentage | int | `80` | Target CPU utilization percentage | -| envVars | object | `{"core":{},"frontend":{"SUBSTRATE_TELEMETRY_URL":"wss://core-service-domain.com"},"shard":{}}` | Environment variables to set on the main containers | +| envVars | object | `{"core":{},"frontend":{},"shard":{}}` | Environment variables to set on the main containers | | envVars.core | object | `{}` | Environment variables to set on the core service | -| envVars.frontend | object | `{"SUBSTRATE_TELEMETRY_URL":"wss://core-service-domain.com"}` | Environment variables to set on the frontend service | -| envVars.frontend.SUBSTRATE_TELEMETRY_URL | string | `"wss://core-service-domain.com"` | The frontend docker container makes this available to the UI, so that it knows where to look for feed information: | +| envVars.frontend | object | `{}` | Environment variables to set on the frontend service | | envVars.shard | object | `{}` | Environment variables to set on the shard service | | extraArgs | object | `{"core":{},"shard":{}}` | Extra arguments to pass to the services | | extraArgs.core | object | `{}` | Extra arguments to pass to the core service | diff --git a/charts/substrate-telemetry/values.yaml b/charts/substrate-telemetry/values.yaml index a87ea51b..e86e3f65 100644 --- a/charts/substrate-telemetry/values.yaml +++ b/charts/substrate-telemetry/values.yaml @@ -42,10 +42,10 @@ envVars: # -- Environment variables to set on the core service core: {} # -- Environment variables to set on the frontend service - frontend: + frontend: {} # -- The frontend docker container makes this available to the UI, # so that it knows where to look for feed information: - SUBSTRATE_TELEMETRY_URL: "wss://core-service-domain.com" + # SUBSTRATE_TELEMETRY_URL: "wss://core-service-domain.com" # -- Extra arguments to pass to the services extraArgs: