Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -2624,6 +2625,13 @@ Changes in collections: following collections can be safely dropped *after* the
- `read-models.application-tree`
- `read-models.<entity>-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
Expand Down
8 changes: 8 additions & 0 deletions README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -2639,6 +2640,13 @@ Changes in collections: following collections can be safely dropped *after* the
- `read-models.application-tree`
- `read-models.<entity>-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

Expand Down
4 changes: 3 additions & 1 deletion charts/codefresh/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading