From 1e9cd527b50a61cd580d5160c9cf4853a901da48 Mon Sep 17 00:00:00 2001 From: Oleg Kunitsyn Date: Mon, 6 Oct 2025 12:40:42 +0200 Subject: [PATCH 1/3] [ODM-12550] Add docs about clickhouse and keeper --- docs/home/release-notes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/home/release-notes.md b/docs/home/release-notes.md index c94f58b..8bc2e13 100644 --- a/docs/home/release-notes.md +++ b/docs/home/release-notes.md @@ -11,3 +11,8 @@ - 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`. From d8d1254fdfa48a0cc5c6fa4521d8787385980d65 Mon Sep 17 00:00:00 2001 From: Oleg Kunitsyn Date: Mon, 6 Oct 2025 12:46:17 +0200 Subject: [PATCH 2/3] [ODM-12550] Add yaml format example --- docs/home/release-notes.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/home/release-notes.md b/docs/home/release-notes.md index 8bc2e13..bfac08e 100644 --- a/docs/home/release-notes.md +++ b/docs/home/release-notes.md @@ -16,3 +16,19 @@ - `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. + From: + + ```yaml + image: docker.io/clickhouse/clickhouse-keeper:25.8.4 + ``` + + To: + + ```yaml + image: + registry: docker.io + repository: clickhouse/clickhouse-keeper + tag: 25.8.4 + ``` From f3476aca9e3c6e3145b78306adbf03ab14b90081 Mon Sep 17 00:00:00 2001 From: Oleg Kunitsyn Date: Mon, 6 Oct 2025 12:46:46 +0200 Subject: [PATCH 3/3] [ODM-12550] Add yaml format example --- docs/home/release-notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/home/release-notes.md b/docs/home/release-notes.md index bfac08e..a834570 100644 --- a/docs/home/release-notes.md +++ b/docs/home/release-notes.md @@ -18,13 +18,13 @@ were strings, but now they are objects containing fields for `registry`, `repository`, and `tag`. The same in YAML format. - From: + Old image declaration: ```yaml image: docker.io/clickhouse/clickhouse-keeper:25.8.4 ``` - To: + New image declaration: ```yaml image: