From 9aaa478788a1b1cb2962821928395a9d0e59247d Mon Sep 17 00:00:00 2001 From: Slach Date: Tue, 7 Oct 2025 14:24:16 +0500 Subject: [PATCH 1/2] fix Helm validation schema, fix https://github.com/Altinity/clickhouse-operator/issues/1839 --- deploy/helm/clickhouse-operator/values.schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/helm/clickhouse-operator/values.schema.json b/deploy/helm/clickhouse-operator/values.schema.json index c299c1e2d..c905c4712 100644 --- a/deploy/helm/clickhouse-operator/values.schema.json +++ b/deploy/helm/clickhouse-operator/values.schema.json @@ -122,7 +122,7 @@ "type": "object", "properties": { "files": { - "type": "null" + "type": ["object", "null"] }, "profiles": { "type": ["object", "null"], @@ -821,7 +821,7 @@ } }, "serviceAccount": { - "type": "object", + "type": ["object", "null"], "properties": { "annotations": { "description": "annotations to add to the service account", @@ -833,7 +833,7 @@ }, "name": { "description": "the name of the service account to use; if not set and create is true, a name is generated using the fullname template", - "type": "null" + "type": "string" } } }, From 56444e29714596d972df01d211f0c0880b362711 Mon Sep 17 00:00:00 2001 From: Slach Date: Tue, 7 Oct 2025 14:24:16 +0500 Subject: [PATCH 2/2] fix Helm validation schema, fix https://github.com/Altinity/clickhouse-operator/issues/1839 --- deploy/helm/clickhouse-operator/values.schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/helm/clickhouse-operator/values.schema.json b/deploy/helm/clickhouse-operator/values.schema.json index c299c1e2d..598c3636b 100644 --- a/deploy/helm/clickhouse-operator/values.schema.json +++ b/deploy/helm/clickhouse-operator/values.schema.json @@ -122,7 +122,7 @@ "type": "object", "properties": { "files": { - "type": "null" + "type": ["object", "null"] }, "profiles": { "type": ["object", "null"], @@ -821,7 +821,7 @@ } }, "serviceAccount": { - "type": "object", + "type": ["object", "null"], "properties": { "annotations": { "description": "annotations to add to the service account", @@ -833,7 +833,7 @@ }, "name": { "description": "the name of the service account to use; if not set and create is true, a name is generated using the fullname template", - "type": "null" + "type": ["string","null"] } } },