diff --git a/README.md b/README.md index df3b3d0d4..25fbeab05 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/ - [To 2.8.0](#to-2-8-0) - [To 2.9.0](#to-2-9-0) - [To 2.9.9](#to-2-9-9) + - [To 2.11.0](#to-2-11-0) - [Rollback](#rollback) - [Troubleshooting](#troubleshooting) - [Values](#values) @@ -2624,6 +2625,13 @@ Changes in collections: following collections can be safely dropped *after* the - `read-models.application-tree` - `read-models.-history` — every collection with `~-history` suffix, such as `read-models.applications-history`, `read-models.services-history`, etc. +### To 2-11-0 + +#### Notable changes: + +- Support for New Relic instrumentation is discontinued and disabled by default via `.Values.global.env.NEW_RELIC_ENABLED=false`. If you are relying on New Relic for monitoring, please reach out to Support team for alternatives. +- Zstd compression is enabled by default for MongoDB traffic. Please ensure that Zstd compression is supported and enabled on your MongoDB server. If you'd like to opt out, you can disable it via `.Values.global.env.MONGO_ENABLE_ZSTD_NETWORK_COMPRESSION=false`. + ## Troubleshooting ### Error: Failed to validate connection to Docker daemon; caused by Error: certificate has expired diff --git a/README.md.gotmpl b/README.md.gotmpl index 351e71109..e99fc99f2 100644 --- a/README.md.gotmpl +++ b/README.md.gotmpl @@ -56,6 +56,7 @@ Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/ - [To 2.8.0](#to-2-8-0) - [To 2.9.0](#to-2-9-0) - [To 2.9.9](#to-2-9-9) + - [To 2.11.0](#to-2-11-0) - [Rollback](#rollback) - [Troubleshooting](#troubleshooting) - [Values](#values) @@ -2639,6 +2640,13 @@ Changes in collections: following collections can be safely dropped *after* the - `read-models.application-tree` - `read-models.-history` — every collection with `~-history` suffix, such as `read-models.applications-history`, `read-models.services-history`, etc. +### To 2-11-0 + +#### Notable changes: + +- Support for New Relic instrumentation is discontinued and disabled by default via `.Values.global.env.NEW_RELIC_ENABLED=false`. If you are relying on New Relic for monitoring, please reach out to Support team for alternatives. +- Zstd compression is enabled by default for MongoDB traffic. Please ensure that Zstd compression is supported and enabled on your MongoDB server. If you'd like to opt out, you can disable it via `.Values.global.env.MONGO_ENABLE_ZSTD_NETWORK_COMPRESSION=false`. + ## Troubleshooting diff --git a/charts/codefresh/values.yaml b/charts/codefresh/values.yaml index 0a43fa8c3..bf45b2d13 100644 --- a/charts/codefresh/values.yaml +++ b/charts/codefresh/values.yaml @@ -175,7 +175,9 @@ global: storageClass: "" # -- Global Env vars - env: {} + env: + NEW_RELIC_ENABLED: "false" + MONGO_ENABLE_ZSTD_NETWORK_COMPRESSION: "true" # -- Global tolerations constraints # Apply toleratons to all Codefresh subcharts. Will not be applied on Bitnami subcharts.