[bitnami/clickhouse-operator] ⬆️ Update dependency references (#34753)

* [bitnami/clickhouse-operator] Release 0.2.20 updating components versions

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

* Update CRDs automatically

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-07-01 20:06:43 +02:00
committed by GitHub
parent 4f956576bc
commit e7575237cc
7 changed files with 147 additions and 57 deletions

View File

@@ -1,8 +1,12 @@
# Changelog # Changelog
## 0.2.19 (2025-06-27) ## 0.2.20 (2025-07-01)
* [bitnami/clickhouse-operator] :zap: :arrow_up: Update dependency references ([#34694](https://github.com/bitnami/charts/pull/34694)) * [bitnami/clickhouse-operator] :zap: :arrow_up: Update dependency references ([#34753](https://github.com/bitnami/charts/pull/34753))
## <small>0.2.19 (2025-06-27)</small>
* [bitnami/clickhouse-operator] :zap: :arrow_up: Update dependency references (#34694) ([8c3eb14](https://github.com/bitnami/charts/commit/8c3eb146b47e21dbd30e8c4d736f183108122aeb)), closes [#34694](https://github.com/bitnami/charts/issues/34694)
## <small>0.2.18 (2025-06-26)</small> ## <small>0.2.18 (2025-06-26)</small>

View File

@@ -9,12 +9,12 @@ annotations:
- name: clickhouse-keeper - name: clickhouse-keeper
image: docker.io/bitnami/clickhouse-keeper:25.6.2-debian-12-r0 image: docker.io/bitnami/clickhouse-keeper:25.6.2-debian-12-r0
- name: clickhouse-operator - name: clickhouse-operator
image: docker.io/bitnami/clickhouse-operator:0.25.0-debian-12-r2 image: docker.io/bitnami/clickhouse-operator:0.25.1-debian-12-r0
- name: clickhouse-operator-metrics-exporter - name: clickhouse-operator-metrics-exporter
image: docker.io/bitnami/clickhouse-operator-metrics-exporter:0.25.0-debian-12-r2 image: docker.io/bitnami/clickhouse-operator-metrics-exporter:0.25.1-debian-12-r0
licenses: Apache-2.0 licenses: Apache-2.0
apiVersion: v2 apiVersion: v2
appVersion: 0.25.0 appVersion: 0.25.1
dependencies: dependencies:
- name: common - name: common
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
@@ -38,4 +38,4 @@ name: clickhouse-operator
sources: sources:
- https://github.com/bitnami/charts/tree/main/bitnami/clickhouse-operator - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse-operator
- https://github.com/bitnami/containers/tree/main/bitnami/clickhouse-operator - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse-operator
version: 0.2.19 version: 0.2.20

View File

@@ -1,19 +1,19 @@
# Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhouseinstallations.clickhouse.altinity.com.yaml # Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhouseinstallations.clickhouse.altinity.com.yaml
# Version: 0.25.0 # Version: 0.25.1
# Template Parameters: # Template Parameters:
# #
# KIND=ClickHouseInstallation # KIND=ClickHouseInstallation
# SINGULAR=clickhouseinstallation # SINGULAR=clickhouseinstallation
# PLURAL=clickhouseinstallations # PLURAL=clickhouseinstallations
# SHORT=chi # SHORT=chi
# OPERATOR_VERSION=0.25.0 # OPERATOR_VERSION=0.25.1
# #
apiVersion: apiextensions.k8s.io/v1 apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition kind: CustomResourceDefinition
metadata: metadata:
name: clickhouseinstallations.clickhouse.altinity.com name: clickhouseinstallations.clickhouse.altinity.com
labels: labels:
clickhouse.altinity.com/chop: 0.25.0 clickhouse.altinity.com/chop: 0.25.1
spec: spec:
group: clickhouse.altinity.com group: clickhouse.altinity.com
scope: Namespaced scope: Namespaced
@@ -449,6 +449,49 @@ spec:
minimum: 0 minimum: 0
maximum: 100 maximum: 100
description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default." description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default."
macros:
type: object
description: "macros parameters"
properties:
sections:
type: object
description: "sections behaviour for macros"
properties:
users:
type: object
description: "sections behaviour for macros on users"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
profiles:
type: object
description: "sections behaviour for macros on profiles"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
quotas:
type: object
description: "sections behaviour for macros on quotas"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
settings:
type: object
description: "sections behaviour for macros on settings"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
files:
type: object
description: "sections behaviour for macros on files"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
defaults: defaults:
type: object type: object
description: | description: |
@@ -641,7 +684,7 @@ spec:
every key in this object is the file name every key in this object is the file name
every value in this object is the file content every value in this object is the file content
you can use `!!binary |` and base64 for binary files, see details here https://yaml.org/type/binary.html you can use `!!binary |` and base64 for binary files, see details here https://yaml.org/type/binary.html
each key could contains prefix like {users}, {common}, {host} or config.d, users.d, cond.d, wrong prefixes will ignored, subfolders also will ignored each key could contains prefix like {common}, {users}, {hosts} or config.d, users.d, conf.d, wrong prefixes will be ignored, subfolders also will be ignored
More details: https://github.com/Altinity/clickhouse-operator/blob/master/docs/chi-examples/05-settings-05-files-nested.yaml More details: https://github.com/Altinity/clickhouse-operator/blob/master/docs/chi-examples/05-settings-05-files-nested.yaml
any key could contains `valueFrom` with `secretKeyRef` which allow pass values from kubernetes secrets any key could contains `valueFrom` with `secretKeyRef` which allow pass values from kubernetes secrets
@@ -763,6 +806,24 @@ spec:
by specifying 0. This is a mutually exclusive setting with "minAvailable". by specifying 0. This is a mutually exclusive setting with "minAvailable".
minimum: 0 minimum: 0
maximum: 65535 maximum: 65535
reconcile:
type: object
description: "allow tuning reconciling process"
properties:
runtime:
type: object
description: "runtime parameters for clickhouse-operator process which are used during reconcile cycle"
properties:
reconcileShardsThreadsNumber:
type: integer
minimum: 1
maximum: 65535
description: "How many goroutines will be used to reconcile shards of a cluster in parallel, 1 by default"
reconcileShardsMaxConcurrencyPercent:
type: integer
minimum: 0
maximum: 100
description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default."
layout: layout:
type: object type: object
description: | description: |
@@ -1009,24 +1070,6 @@ spec:
description: | description: |
optional, configuration of the templates names which will use for generate Kubernetes resources according to selected replica optional, configuration of the templates names which will use for generate Kubernetes resources according to selected replica
override top-level `chi.spec.configuration.templates`, cluster-level `chi.spec.configuration.clusters.templates`, replica-level `chi.spec.configuration.clusters.layout.replicas.templates` override top-level `chi.spec.configuration.templates`, cluster-level `chi.spec.configuration.clusters.templates`, replica-level `chi.spec.configuration.clusters.layout.replicas.templates`
reconcile:
type: object
description: "allow tuning reconciling process"
properties:
runtime:
type: object
description: "runtime parameters for clickhouse-operator process which are used during reconcile cycle"
properties:
reconcileShardsThreadsNumber:
type: integer
minimum: 1
maximum: 65535
description: "How many goroutines will be used to reconcile shards of a cluster in parallel, 1 by default"
reconcileShardsMaxConcurrencyPercent:
type: integer
minimum: 0
maximum: 100
description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default."
templates: templates:
type: object type: object
description: "allows define templates which will use for render Kubernetes resources like StatefulSet, ConfigMap, Service, PVC, by default, clickhouse-operator have own templates, but you can override it" description: "allows define templates which will use for render Kubernetes resources like StatefulSet, ConfigMap, Service, PVC, by default, clickhouse-operator have own templates, but you can override it"

View File

@@ -1,19 +1,19 @@
# Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhouseinstallationtemplates.clickhouse.altinity.com.yaml # Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhouseinstallationtemplates.clickhouse.altinity.com.yaml
# Version: 0.25.0 # Version: 0.25.1
# Template Parameters: # Template Parameters:
# #
# KIND=ClickHouseInstallationTemplate # KIND=ClickHouseInstallationTemplate
# SINGULAR=clickhouseinstallationtemplate # SINGULAR=clickhouseinstallationtemplate
# PLURAL=clickhouseinstallationtemplates # PLURAL=clickhouseinstallationtemplates
# SHORT=chit # SHORT=chit
# OPERATOR_VERSION=0.25.0 # OPERATOR_VERSION=0.25.1
# #
apiVersion: apiextensions.k8s.io/v1 apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition kind: CustomResourceDefinition
metadata: metadata:
name: clickhouseinstallationtemplates.clickhouse.altinity.com name: clickhouseinstallationtemplates.clickhouse.altinity.com
labels: labels:
clickhouse.altinity.com/chop: 0.25.0 clickhouse.altinity.com/chop: 0.25.1
spec: spec:
group: clickhouse.altinity.com group: clickhouse.altinity.com
scope: Namespaced scope: Namespaced
@@ -449,6 +449,49 @@ spec:
minimum: 0 minimum: 0
maximum: 100 maximum: 100
description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default." description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default."
macros:
type: object
description: "macros parameters"
properties:
sections:
type: object
description: "sections behaviour for macros"
properties:
users:
type: object
description: "sections behaviour for macros on users"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
profiles:
type: object
description: "sections behaviour for macros on profiles"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
quotas:
type: object
description: "sections behaviour for macros on quotas"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
settings:
type: object
description: "sections behaviour for macros on settings"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
files:
type: object
description: "sections behaviour for macros on files"
properties:
enabled:
!!merge <<: *TypeStringBool
description: "enabled or not"
defaults: defaults:
type: object type: object
description: | description: |
@@ -641,7 +684,7 @@ spec:
every key in this object is the file name every key in this object is the file name
every value in this object is the file content every value in this object is the file content
you can use `!!binary |` and base64 for binary files, see details here https://yaml.org/type/binary.html you can use `!!binary |` and base64 for binary files, see details here https://yaml.org/type/binary.html
each key could contains prefix like {users}, {common}, {host} or config.d, users.d, cond.d, wrong prefixes will ignored, subfolders also will ignored each key could contains prefix like {common}, {users}, {hosts} or config.d, users.d, conf.d, wrong prefixes will be ignored, subfolders also will be ignored
More details: https://github.com/Altinity/clickhouse-operator/blob/master/docs/chi-examples/05-settings-05-files-nested.yaml More details: https://github.com/Altinity/clickhouse-operator/blob/master/docs/chi-examples/05-settings-05-files-nested.yaml
any key could contains `valueFrom` with `secretKeyRef` which allow pass values from kubernetes secrets any key could contains `valueFrom` with `secretKeyRef` which allow pass values from kubernetes secrets
@@ -763,6 +806,24 @@ spec:
by specifying 0. This is a mutually exclusive setting with "minAvailable". by specifying 0. This is a mutually exclusive setting with "minAvailable".
minimum: 0 minimum: 0
maximum: 65535 maximum: 65535
reconcile:
type: object
description: "allow tuning reconciling process"
properties:
runtime:
type: object
description: "runtime parameters for clickhouse-operator process which are used during reconcile cycle"
properties:
reconcileShardsThreadsNumber:
type: integer
minimum: 1
maximum: 65535
description: "How many goroutines will be used to reconcile shards of a cluster in parallel, 1 by default"
reconcileShardsMaxConcurrencyPercent:
type: integer
minimum: 0
maximum: 100
description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default."
layout: layout:
type: object type: object
description: | description: |
@@ -1009,24 +1070,6 @@ spec:
description: | description: |
optional, configuration of the templates names which will use for generate Kubernetes resources according to selected replica optional, configuration of the templates names which will use for generate Kubernetes resources according to selected replica
override top-level `chi.spec.configuration.templates`, cluster-level `chi.spec.configuration.clusters.templates`, replica-level `chi.spec.configuration.clusters.layout.replicas.templates` override top-level `chi.spec.configuration.templates`, cluster-level `chi.spec.configuration.clusters.templates`, replica-level `chi.spec.configuration.clusters.layout.replicas.templates`
reconcile:
type: object
description: "allow tuning reconciling process"
properties:
runtime:
type: object
description: "runtime parameters for clickhouse-operator process which are used during reconcile cycle"
properties:
reconcileShardsThreadsNumber:
type: integer
minimum: 1
maximum: 65535
description: "How many goroutines will be used to reconcile shards of a cluster in parallel, 1 by default"
reconcileShardsMaxConcurrencyPercent:
type: integer
minimum: 0
maximum: 100
description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default."
templates: templates:
type: object type: object
description: "allows define templates which will use for render Kubernetes resources like StatefulSet, ConfigMap, Service, PVC, by default, clickhouse-operator have own templates, but you can override it" description: "allows define templates which will use for render Kubernetes resources like StatefulSet, ConfigMap, Service, PVC, by default, clickhouse-operator have own templates, but you can override it"

View File

@@ -1,15 +1,15 @@
# Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhousekeeperinstallations.clickhouse-keeper.altinity.com.yaml # Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhousekeeperinstallations.clickhouse-keeper.altinity.com.yaml
# Version: 0.25.0 # Version: 0.25.1
# Template Parameters: # Template Parameters:
# #
# OPERATOR_VERSION=0.25.0 # OPERATOR_VERSION=0.25.1
# #
apiVersion: apiextensions.k8s.io/v1 apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition kind: CustomResourceDefinition
metadata: metadata:
name: clickhousekeeperinstallations.clickhouse-keeper.altinity.com name: clickhousekeeperinstallations.clickhouse-keeper.altinity.com
labels: labels:
clickhouse-keeper.altinity.com/chop: 0.25.0 clickhouse-keeper.altinity.com/chop: 0.25.1
spec: spec:
group: clickhouse-keeper.altinity.com group: clickhouse-keeper.altinity.com
scope: Namespaced scope: Namespaced

View File

@@ -1,5 +1,5 @@
# Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhouseoperatorconfigurations.clickhouse.altinity.com.yaml # Source: https://raw.githubusercontent.com/Altinity/clickhouse-operator/refs/heads/{version}/deploy/helm/clickhouse-operator/crds/CustomResourceDefinition-clickhouseoperatorconfigurations.clickhouse.altinity.com.yaml
# Version: 0.25.0 # Version: 0.25.1
# Template Parameters: # Template Parameters:
# #
# NONE # NONE
@@ -9,7 +9,7 @@ kind: CustomResourceDefinition
metadata: metadata:
name: clickhouseoperatorconfigurations.clickhouse.altinity.com name: clickhouseoperatorconfigurations.clickhouse.altinity.com
labels: labels:
clickhouse.altinity.com/chop: 0.25.0 clickhouse.altinity.com/chop: 0.25.1
spec: spec:
group: clickhouse.altinity.com group: clickhouse.altinity.com
scope: Namespaced scope: Namespaced

View File

@@ -82,7 +82,7 @@ extraDeploy: []
image: image:
registry: docker.io registry: docker.io
repository: bitnami/clickhouse-operator repository: bitnami/clickhouse-operator
tag: 0.25.0-debian-12-r2 tag: 0.25.1-debian-12-r0
digest: "" digest: ""
## Specify a imagePullPolicy ## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -658,7 +658,7 @@ metrics:
image: image:
registry: docker.io registry: docker.io
repository: bitnami/clickhouse-operator-metrics-exporter repository: bitnami/clickhouse-operator-metrics-exporter
tag: 0.25.0-debian-12-r2 tag: 0.25.1-debian-12-r0
digest: "" digest: ""
## Specify a imagePullPolicy ## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'