Skip to content
Merged
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
21 changes: 21 additions & 0 deletions docs/home/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,24 @@
- To use transformations, configure cross-account ECR access. See [Cross-account ECR access](./clouds/aws.md#cross-account-ecr-access).
- The `processors-controller` requires RBAC permissions to manage `Pods`, `ConfigMaps`, and `PersistentVolumeClaims`.
The required manifests are included in the Helm chart and can be disabled by setting `processorsController.rbac.enabled` to `false`.

- Updated clickhouse server and clickhouse keeper image declarations.
- `altinity.clickhouse.installation.spec.templates.podTemplate.spec.mainContainer.image` and
`altinity.clickhouseKeeper.installation.spec.templates.podTemplate.spec.mainContainer.image`
were strings, but now they are objects containing fields for `registry`, `repository`, and `tag`.

The same in YAML format.
Old image declaration:

```yaml
image: docker.io/clickhouse/clickhouse-keeper:25.8.4
```

New image declaration:

```yaml
image:
registry: docker.io
repository: clickhouse/clickhouse-keeper
tag: 25.8.4
```