diff --git a/acto/engine.py b/acto/engine.py index e30f37bf58..192d8be303 100644 --- a/acto/engine.py +++ b/acto/engine.py @@ -267,6 +267,7 @@ def __init__( is_reproduce: bool, apply_testcase_f: FunctionType, acto_namespace: int, + operator_container_name: str, additional_exclude_paths: list[str] = None, ) -> None: self.context = context @@ -293,6 +294,7 @@ def __init__( if additional_exclude_paths is not None else [] ) + self.operator_container_name = operator_container_name self.custom_on_init = custom_on_init self.custom_oracle = custom_oracle @@ -425,6 +427,7 @@ def run_trial( trial_dir, self.kubeconfig, self.context_name, + self.operator_container_name, wait_time=self.wait_time, ) checker: CheckerSet = self.checker_t( @@ -869,6 +872,12 @@ def __init__( self.checker_type = CheckerSet self.snapshots = [] + # Extract the operator_container_name from config + for deploy_step in self.operator_config.deploy.steps: + if deploy_step.apply != None and deploy_step.apply.operator: + self.operator_container_name = deploy_step.apply.operator_container_name + break + # generate configuration files for the cluster runtime self.cluster.configure_cluster( operator_config.num_nodes, self.operator_config.kubernetes_version @@ -1183,7 +1192,8 @@ def run( self.is_reproduce, self.apply_testcase_f, self.acto_namespace, - self.operator_config.diff_ignore_fields, + self.operator_container_name, + self.operator_config.diff_ignore_fields ) runners.append(runner) diff --git a/acto/lib/operator_config.py b/acto/lib/operator_config.py index b4f38f3724..2ac0511426 100644 --- a/acto/lib/operator_config.py +++ b/acto/lib/operator_config.py @@ -12,6 +12,9 @@ class ApplyStep(BaseModel, extra="forbid"): operator: bool = Field( description="If the file contains the operator deployment", default=False) + operator_container_name: Optional[str] = Field( + description="The container name of the operator in the operator pod", + default=None) namespace: Optional[str] = Field( description="Namespace for applying the file. If not specified, " + "use the namespace in the file or Acto namespace. " + diff --git a/acto/runner/runner.py b/acto/runner/runner.py index 1c94ef4c17..1baf35f404 100644 --- a/acto/runner/runner.py +++ b/acto/runner/runner.py @@ -34,6 +34,7 @@ def __init__( trial_dir: str, kubeconfig: str, context_name: str, + operator_container_name: str, custom_system_state_f: Optional[Callable[..., dict]] = None, wait_time: int = 45, ): @@ -42,6 +43,7 @@ def __init__( self.trial_dir = trial_dir self.kubeconfig = kubeconfig self.context_name = context_name + self.operator_container_name = operator_container_name self.wait_time = wait_time self.log_length = 0 @@ -311,10 +313,17 @@ def collect_operator_log(self) -> list: ) else: logger.error("Failed to find operator pod") - - log = self.core_v1_api.read_namespaced_pod_log( - name=operator_pod_list[0].metadata.name, namespace=self.namespace - ) + if self.operator_container_name == None: + log = self.core_v1_api.read_namespaced_pod_log( + name=operator_pod_list[0].metadata.name, + namespace=self.namespace, + container=self.operator_container_name + ) + else: + log = self.core_v1_api.read_namespaced_pod_log( + name=operator_pod_list[0].metadata.name, + namespace=self.namespace, + ) # only get the new log since previous result new_log = log.split("\n") diff --git a/clickhouse-result/test_plan.json b/clickhouse-result/test_plan.json deleted file mode 100644 index 3d46eeaed1..0000000000 --- a/clickhouse-result/test_plan.json +++ /dev/null @@ -1,7613 +0,0 @@ -{ - "delta_from": null, - "existing_testcases": {}, - "normal_testcases": { - "[\"spec\", \"configuration\", \"clusters\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"definitionType\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"type\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"replica\"]": [ - "string-deletion", - "", - "None", - "All" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"shard\"]": [ - "string-deletion", - "", - "None", - "All", - "DistributedTablesOnly" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"value\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"key\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"optional\"]": [ - "boolean-deletion", - "boolean-toggle-off", - "boolean-toggle-on" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"identity\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"host\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"root\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"profiles\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"quotas\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"users\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"identity\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"host\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"root\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"zookeeper\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\", \"distributedDDL\", \"profile\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"distributedDDL\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"defaults\", \"storageManagement\", \"provisioner\"]": [ - "string-deletion", - "", - "StatefulSet", - "Operator" - ], - "[\"spec\", \"defaults\", \"storageManagement\", \"reclaimPolicy\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"defaults\", \"storageManagement\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"namespaceDomainPattern\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"configMap\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"pvc\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"service\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"statefulSet\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"configMap\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"pvc\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"service\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"statefulSet\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"reconciling\", \"cleanup\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"reconciling\", \"policy\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"reconciling\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"restart\"]": [ - "string-deletion", - "", - "RollingUpdate" - ], - "[\"spec\", \"stop\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"taskID\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0, \"type\"]": [ - "string-deletion", - "", - "Unspecified", - "ClusterScopeIndex" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"distribution\"]": [ - "string-deletion", - "", - "Unspecified", - "OnePerHost" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"generateName\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"metadata\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]": [ - "string-deletion", - "", - "Unspecified", - "Shard", - "Replica", - "Cluster", - "ClickHouseInstallation", - "Namespace" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"topologyKey\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]": [ - "string-deletion", - "", - "Unspecified", - "ClickHouseAntiAffinity", - "ShardAntiAffinity", - "ReplicaAntiAffinity", - "AnotherNamespaceAntiAffinity", - "AnotherClickHouseInstallationAntiAffinity", - "AnotherClusterAntiAffinity", - "MaxNumberPerNode", - "NamespaceAffinity", - "ClickHouseInstallationAffinity", - "ClusterAffinity", - "ShardAffinity", - "ReplicaAffinity", - "PreviousTailAffinity", - "CircularReplication" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"key\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\", 0]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"generateName\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"metadata\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"metadata\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"provisioner\"]": [ - "string-deletion", - "", - "StatefulSet", - "Operator" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"reclaimPolicy\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templating\", \"chiSelector\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templating\", \"policy\"]": [ - "string-deletion", - "", - "auto", - "manual" - ], - "[\"spec\", \"templating\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"troubleshoot\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"useTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"useTemplates\", 0, \"namespace\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"useTemplates\", 0, \"useType\"]": [ - "string-deletion", - "", - "merge" - ], - "[\"spec\", \"useTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"useTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\"]": [ - "object-deletion", - "object-empty" - ] - }, - "overspecified_testcases": {}, - "copiedover_testcases": {}, - "semantic_testcases": {}, - "additional_semantic_testcases": [ - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]", - "k8s-overload" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]", - "k8s-scaleUpDown" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]", - "k8s-overload" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]", - "k8s-scaleUpDown" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]", - "k8s-overload" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]", - "k8s-scaleUpDown" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]", - "k8s-overload" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]", - "k8s-scaleUpDown" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]", - "k8s-overload" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]", - "k8s-scaleUpDown" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]", - "k8s-overload" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]", - "k8s-scaleUpDown" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]", - "k8s-port_privilege" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]", - "k8s-overload" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]", - "k8s-scaleDownUp" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]", - "k8s-scaleUpDown" - ] - ] - ], - "planned_normal_testcases": { - "[\"spec\", \"configuration\", \"clusters\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"definitionType\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"type\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"replica\"]": [ - "string-deletion", - "", - "None", - "All" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"shard\"]": [ - "string-deletion", - "", - "None", - "All", - "DistributedTablesOnly" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"value\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"key\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"optional\"]": [ - "boolean-deletion", - "boolean-toggle-off", - "boolean-toggle-on" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"identity\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"host\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"root\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"clusters\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"profiles\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"quotas\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"users\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"identity\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"host\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"root\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"configuration\", \"zookeeper\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"configuration\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\", \"distributedDDL\", \"profile\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"distributedDDL\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"defaults\", \"storageManagement\", \"provisioner\"]": [ - "string-deletion", - "", - "StatefulSet", - "Operator" - ], - "[\"spec\", \"defaults\", \"storageManagement\", \"reclaimPolicy\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"defaults\", \"storageManagement\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"defaults\", \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"defaults\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"namespaceDomainPattern\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"configMap\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"pvc\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"service\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"statefulSet\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"configMap\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"pvc\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"service\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"statefulSet\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"reconciling\", \"cleanup\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"reconciling\", \"policy\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"reconciling\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"restart\"]": [ - "string-deletion", - "", - "RollingUpdate" - ], - "[\"spec\", \"stop\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"taskID\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0, \"type\"]": [ - "string-deletion", - "", - "Unspecified", - "ClusterScopeIndex" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"files\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"settings\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"clusterServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"dataVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"hostTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"logVolumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"podTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"replicaServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"serviceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"shardServiceTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"volumeClaimTemplate\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"hostTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"distribution\"]": [ - "string-deletion", - "", - "Unspecified", - "OnePerHost" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"generateName\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"metadata\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]": [ - "number-deletion", - "number-change" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]": [ - "string-deletion", - "", - "Unspecified", - "Shard", - "Replica", - "Cluster", - "ClickHouseInstallation", - "Namespace" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"topologyKey\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]": [ - "string-deletion", - "", - "Unspecified", - "ClickHouseAntiAffinity", - "ShardAntiAffinity", - "ReplicaAntiAffinity", - "AnotherNamespaceAntiAffinity", - "AnotherClickHouseInstallationAntiAffinity", - "AnotherClusterAntiAffinity", - "MaxNumberPerNode", - "NamespaceAffinity", - "ClickHouseInstallationAffinity", - "ClusterAffinity", - "ShardAffinity", - "ReplicaAffinity", - "PreviousTailAffinity", - "CircularReplication" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"key\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\", 0]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"podTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"generateName\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"metadata\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"serviceTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"metadata\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"provisioner\"]": [ - "string-deletion", - "", - "StatefulSet", - "Operator" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"reclaimPolicy\"]": [ - "string-deletion", - "", - "Retain", - "Delete" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"spec\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templates\", \"volumeClaimTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\", \"templates\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templating\", \"chiSelector\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"templating\", \"policy\"]": [ - "string-deletion", - "", - "auto", - "manual" - ], - "[\"spec\", \"templating\"]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"troubleshoot\"]": [ - "string-deletion", - "", - "0", - "1", - "False", - "false", - "True", - "true", - "No", - "no", - "Yes", - "yes", - "Off", - "off", - "On", - "on", - "Disable", - "disable", - "Enable", - "enable", - "Disabled", - "disabled", - "Enabled", - "enabled" - ], - "[\"spec\", \"useTemplates\", 0, \"name\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"useTemplates\", 0, \"namespace\"]": [ - "string-deletion", - "string-change", - "string-empty" - ], - "[\"spec\", \"useTemplates\", 0, \"useType\"]": [ - "string-deletion", - "", - "merge" - ], - "[\"spec\", \"useTemplates\", 0]": [ - "object-deletion", - "object-empty" - ], - "[\"spec\", \"useTemplates\"]": [ - "array-deletion", - "array-push", - "array-pop", - "array-empty" - ], - "[\"spec\"]": [ - "object-deletion", - "object-empty" - ] - }, - "normal_subgroups": [ - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"port\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "1" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "off" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"internalReplication\"]", - "enabled" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "yes" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "disabled" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"insecure\"]", - "enabled" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"root\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"root\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"root\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Yes" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Disabled" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"secure\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"identity\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"identity\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"identity\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\"]", - "array-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\"]", - "array-push" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\"]", - "array-pop" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"podTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"podTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"podTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"interserverHTTPPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"operation_timeout_ms\"]", - "number-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"service\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"service\"]", - "" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"service\"]", - "Retain" - ] - ], - [ - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"service\"]", - "Delete" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicasCount\"]", - "number-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "0" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "1" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "False" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "false" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "True" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "true" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "No" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "no" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "Yes" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "yes" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "Off" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "off" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "On" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "on" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "Disable" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "disable" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "Enable" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "enable" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "Disabled" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "disabled" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "Enabled" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"insecure\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"shard\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"shard\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"shard\"]", - "None" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"shard\"]", - "All" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"shard\"]", - "DistributedTablesOnly" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"settings\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"settings\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"host\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"host\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"host\"]", - "string-empty" - ], - [ - "[\"spec\", \"defaults\", \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"namespace\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"useTemplates\", 0, \"namespace\"]", - "string-change" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"namespace\"]", - "string-empty" - ], - [ - "[\"spec\", \"reconciling\", \"policy\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"policy\"]", - "string-change" - ], - [ - "[\"spec\", \"reconciling\", \"policy\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicasCount\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]", - "number-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"session_timeout_ms\"]", - "number-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"spec\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"spec\"]", - "object-empty" - ], - [ - "[\"spec\"]", - "object-deletion" - ], - [ - "[\"spec\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tcpPort\"]", - "number-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\"]", - "array-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\"]", - "array-push" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\"]", - "array-pop" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\"]", - "array-empty" - ], - [ - "[\"spec\", \"reconciling\"]", - "object-deletion" - ], - [ - "[\"spec\", \"reconciling\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"hostTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"hostTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"hostTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "1" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "off" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"secure\"]", - "enabled" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "true" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "disable" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secure\"]", - "enabled" - ], - [ - "[\"spec\", \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"replicaServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"replicaServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"replicaServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"session_timeout_ms\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"podTemplate\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"podTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"podTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"key\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"key\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"key\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"defaults\"]", - "object-deletion" - ], - [ - "[\"spec\", \"defaults\"]", - "object-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"zookeeper\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"host\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"host\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"host\"]", - "string-empty" - ], - [ - "[\"spec\", \"stop\"]", - "string-deletion" - ], - [ - "[\"spec\", \"stop\"]", - "" - ] - ], - [ - [ - "[\"spec\", \"stop\"]", - "0" - ], - [ - "[\"spec\", \"stop\"]", - "1" - ], - [ - "[\"spec\", \"stop\"]", - "False" - ], - [ - "[\"spec\", \"stop\"]", - "false" - ], - [ - "[\"spec\", \"stop\"]", - "True" - ], - [ - "[\"spec\", \"stop\"]", - "true" - ], - [ - "[\"spec\", \"stop\"]", - "No" - ], - [ - "[\"spec\", \"stop\"]", - "no" - ], - [ - "[\"spec\", \"stop\"]", - "Yes" - ], - [ - "[\"spec\", \"stop\"]", - "yes" - ] - ], - [ - [ - "[\"spec\", \"stop\"]", - "Off" - ], - [ - "[\"spec\", \"stop\"]", - "off" - ], - [ - "[\"spec\", \"stop\"]", - "On" - ], - [ - "[\"spec\", \"stop\"]", - "on" - ], - [ - "[\"spec\", \"stop\"]", - "Disable" - ], - [ - "[\"spec\", \"stop\"]", - "disable" - ], - [ - "[\"spec\", \"stop\"]", - "Enable" - ], - [ - "[\"spec\", \"stop\"]", - "enable" - ], - [ - "[\"spec\", \"stop\"]", - "Disabled" - ], - [ - "[\"spec\", \"stop\"]", - "disabled" - ] - ], - [ - [ - "[\"spec\", \"stop\"]", - "Enabled" - ], - [ - "[\"spec\", \"stop\"]", - "enabled" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"hostTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"hostTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"hostTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0, \"type\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0, \"type\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0, \"type\"]", - "Unspecified" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0, \"type\"]", - "ClusterScopeIndex" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"shardServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"shardServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"shardServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\"]", - "array-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\"]", - "array-push" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\"]", - "array-pop" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\"]", - "array-empty" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\"]", - "array-deletion" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\"]", - "array-push" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\"]", - "array-pop" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"metadata\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"metadata\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"reclaimPolicy\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"reclaimPolicy\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"reclaimPolicy\"]", - "Retain" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"reclaimPolicy\"]", - "Delete" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\"]", - "array-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\"]", - "array-push" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\"]", - "array-pop" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\"]", - "array-empty" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"dataVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"dataVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"dataVolumeClaimTemplate\"]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"podTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"podTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"podTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\"]", - "array-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\"]", - "array-push" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\"]", - "array-pop" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\"]", - "array-empty" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"templates\", \"replicaServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"replicaServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"replicaServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"settings\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"settings\"]", - "object-empty" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"logVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"logVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"logVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\"]", - "object-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "no" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "enable" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"secure\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"quotas\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"quotas\"]", - "object-empty" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"pvc\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"pvc\"]", - "" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"pvc\"]", - "Retain" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"pvc\"]", - "Delete" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"templating\", \"chiSelector\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templating\", \"chiSelector\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"logVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"logVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"logVolumeClaimTemplate\"]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "Unspecified" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "ClickHouseAntiAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "ShardAntiAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "ReplicaAntiAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "AnotherNamespaceAntiAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "AnotherClickHouseInstallationAntiAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "AnotherClusterAntiAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "MaxNumberPerNode" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "NamespaceAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "ClickHouseInstallationAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "ClusterAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "ShardAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "ReplicaAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "PreviousTailAffinity" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"type\"]", - "CircularReplication" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"operation_timeout_ms\"]", - "number-change" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\"]", - "object-deletion" - ] - ], - [ - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"settings\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"settings\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "0" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "1" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "False" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "false" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "True" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "true" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "No" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "no" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "Yes" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "yes" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "Off" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "off" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "On" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "on" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "Disable" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "disable" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "Enable" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "enable" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "Disabled" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "disabled" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "Enabled" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"secure\"]", - "enabled" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"provisioner\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"provisioner\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"provisioner\"]", - "StatefulSet" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"provisioner\"]", - "Operator" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"files\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"files\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"topologyKey\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"topologyKey\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"topologyKey\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"settings\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"settings\"]", - "object-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"httpsPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"volumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"volumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"volumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"distribution\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"distribution\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"distribution\"]", - "Unspecified" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"distribution\"]", - "OnePerHost" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"serviceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"serviceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"serviceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"optional\"]", - "boolean-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"optional\"]", - "boolean-toggle-off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"optional\"]", - "boolean-toggle-on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"files\"]", - "object-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"files\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"httpsPort\"]", - "number-change" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"metadata\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"metadata\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"files\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"files\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"templating\", \"policy\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"templating\", \"policy\"]", - "" - ], - [ - "[\"spec\", \"templating\", \"policy\"]", - "auto" - ], - [ - "[\"spec\", \"templating\", \"policy\"]", - "manual" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\"]", - "array-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\"]", - "array-push" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\"]", - "array-pop" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"clusterServiceTemplate\"]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"definitionType\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"definitionType\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"definitionType\"]", - "string-empty" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"files\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"files\"]", - "object-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"hostTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"hostTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"hostTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "True" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "Disable" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"auto\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shardsCount\"]", - "number-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]", - "number-deletion" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"number\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"spec\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"spec\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"metadata\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"metadata\"]", - "object-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tcpPort\"]", - "number-change" - ], - [ - "[\"spec\", \"defaults\", \"distributedDDL\", \"profile\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"distributedDDL\", \"profile\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"distributedDDL\", \"profile\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"serviceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"serviceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"serviceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"serviceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"serviceTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"serviceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"replica\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"replica\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"replica\"]", - "None" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"schemaPolicy\", \"replica\"]", - "All" - ], - [ - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]", - "number-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"configMapPropagationTimeout\"]", - "number-change" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"name\"]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"serviceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"serviceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"serviceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\"]", - "object-deletion" - ] - ], - [ - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"interserverHTTPPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"files\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"files\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"podTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"podTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"podTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "Yes" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "Disabled" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"insecure\"]", - "enabled" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\"]", - "object-deletion" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"httpsPort\"]", - "number-change" - ] - ], - [ - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"service\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"service\"]", - "" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"service\"]", - "Retain" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"service\"]", - "Delete" - ], - [ - "[\"spec\", \"restart\"]", - "string-deletion" - ], - [ - "[\"spec\", \"restart\"]", - "" - ], - [ - "[\"spec\", \"restart\"]", - "RollingUpdate" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tlsPort\"]", - "number-change" - ], - [ - "[\"spec\", \"useTemplates\"]", - "array-deletion" - ] - ], - [ - [ - "[\"spec\", \"useTemplates\"]", - "array-push" - ], - [ - "[\"spec\", \"useTemplates\"]", - "array-pop" - ], - [ - "[\"spec\", \"useTemplates\"]", - "array-empty" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\"]", - "object-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"serviceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"serviceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"serviceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"podTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"podTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"podTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"shardServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"shardServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"shardServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"configMap\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"configMap\"]", - "" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"configMap\"]", - "Retain" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"configMap\"]", - "Delete" - ], - [ - "[\"spec\", \"useTemplates\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"useTemplates\", 0]", - "object-empty" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"distributedDDL\"]", - "object-deletion" - ], - [ - "[\"spec\", \"defaults\", \"distributedDDL\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"files\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"files\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"hostTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"hostTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"hostTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"replicaServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"useType\"]", - "string-deletion" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"useType\"]", - "" - ], - [ - "[\"spec\", \"useTemplates\", 0, \"useType\"]", - "merge" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]", - "number-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shardsCount\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"users\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"users\"]", - "object-empty" - ], - [ - "[\"spec\", \"templating\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templating\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\"]", - "array-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\"]", - "array-push" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\"]", - "array-pop" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"serviceTemplate\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"serviceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"serviceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"clusterServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"clusterServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"clusterServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\"]", - "array-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\"]", - "array-push" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\"]", - "array-pop" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\"]", - "array-empty" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "0" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "1" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "False" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "false" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "True" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "true" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "No" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "no" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "Yes" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "yes" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "Off" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "off" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "On" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "on" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "Disable" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "disable" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "Enable" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "enable" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "Disabled" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "disabled" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "Enabled" - ], - [ - "[\"spec\", \"defaults\", \"replicasUseFQDN\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"hostTemplate\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"hostTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"hostTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"hostTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"hostTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"hostTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "False" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "True" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "On" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "Disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"insecure\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"hostTemplate\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"hostTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"hostTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"type\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"type\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"type\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"name\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"identity\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"identity\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"identity\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"files\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"files\"]", - "object-empty" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"configMap\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"configMap\"]", - "" - ] - ], - [ - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"configMap\"]", - "Retain" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"configMap\"]", - "Delete" - ], - [ - "[\"spec\", \"taskID\"]", - "string-deletion" - ], - [ - "[\"spec\", \"taskID\"]", - "string-change" - ], - [ - "[\"spec\", \"taskID\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"tcpPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"name\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"provisioner\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"provisioner\"]", - "" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"provisioner\"]", - "StatefulSet" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"provisioner\"]", - "Operator" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "string-deletion" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "0" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "1" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "False" - ] - ], - [ - [ - "[\"spec\", \"troubleshoot\"]", - "false" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "True" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "true" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "No" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "no" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "Yes" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "yes" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "Off" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "off" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "On" - ] - ], - [ - [ - "[\"spec\", \"troubleshoot\"]", - "on" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "Disable" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "disable" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "Enable" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "enable" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "Disabled" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "disabled" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "Enabled" - ], - [ - "[\"spec\", \"troubleshoot\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"root\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"root\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"root\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"spec\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0, \"spec\"]", - "object-empty" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"reclaimPolicy\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"reclaimPolicy\"]", - "" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"reclaimPolicy\"]", - "Retain" - ], - [ - "[\"spec\", \"defaults\", \"storageManagement\", \"reclaimPolicy\"]", - "Delete" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"settings\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"settings\"]", - "object-empty" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"statefulSet\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"statefulSet\"]", - "" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"statefulSet\"]", - "Retain" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"unknownObjects\", \"statefulSet\"]", - "Delete" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"pvc\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"pvc\"]", - "" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"pvc\"]", - "Retain" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"pvc\"]", - "Delete" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"zookeeper\", \"nodes\", 0, \"port\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"value\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"value\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"value\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\", 0]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\", 0]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\", 0]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"templates\", \"clusterServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"clusterServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"clusterServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\"]", - "array-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\"]", - "array-push" - ], - [ - "[\"spec\", \"configuration\", \"clusters\"]", - "array-pop" - ], - [ - "[\"spec\", \"configuration\", \"clusters\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\"]", - "array-deletion" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\"]", - "array-push" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\"]", - "array-pop" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"portDistribution\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"podTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"podTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"templates\", \"podTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"dataVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"dataVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"dataVolumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0]", - "object-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"weight\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"namespaceDomainPattern\"]", - "string-deletion" - ], - [ - "[\"spec\", \"namespaceDomainPattern\"]", - "string-change" - ], - [ - "[\"spec\", \"namespaceDomainPattern\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0]", - "object-empty" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"interserverHTTPPort\"]", - "number-change" - ], - [ - "[\"spec\", \"configuration\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"tlsPort\"]", - "number-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "Unspecified" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "Shard" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "Replica" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "Cluster" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "ClickHouseInstallation" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"podDistribution\", 0, \"scope\"]", - "Namespace" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"statefulSet\"]", - "string-deletion" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"statefulSet\"]", - "" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"statefulSet\"]", - "Retain" - ], - [ - "[\"spec\", \"reconciling\", \"cleanup\", \"reconcileFailedObjects\", \"statefulSet\"]", - "Delete" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]", - "number-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"tlsPort\"]", - "number-change" - ] - ], - [ - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"volumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"volumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\", \"volumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\"]", - "array-deletion" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\"]", - "array-push" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\"]", - "array-pop" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"logVolumeClaimTemplate\"]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"templates\", \"shardServiceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "0" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "1" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "False" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "false" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "True" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "true" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "No" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "no" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Yes" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "yes" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Off" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "off" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "On" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "on" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Disable" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "disable" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Enable" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "enable" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Disabled" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "disabled" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "Enabled" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0, \"secure\"]", - "enabled" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\", 0, \"templates\", \"dataVolumeClaimTemplate\"]", - "string-empty" - ] - ], - [ - [ - "[\"spec\", \"defaults\", \"templates\", \"serviceTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"serviceTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"defaults\", \"templates\", \"serviceTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"key\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"key\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"secret\", \"valueFrom\", \"secretKeyRef\", \"key\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"profiles\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"profiles\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\"]", - "array-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\"]", - "array-push" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\"]", - "array-pop" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"zone\", \"values\"]", - "array-empty" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"generateName\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"generateName\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"podTemplates\", 0, \"generateName\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"podTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"podTemplate\"]", - "string-change" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"podTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"settings\"]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"settings\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"configuration\", \"zookeeper\", \"nodes\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\"]", - "array-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\"]", - "array-push" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\"]", - "array-pop" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"shards\", 0, \"replicas\"]", - "array-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"name\"]", - "string-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"name\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"layout\", \"replicas\", 0, \"shards\", 0, \"name\"]", - "string-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-deletion" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-change" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"templates\", \"volumeClaimTemplate\"]", - "string-empty" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"volumeClaimTemplates\", 0]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\"]", - "object-deletion" - ], - [ - "[\"spec\", \"templates\", \"hostTemplates\", 0, \"spec\", \"templates\"]", - "object-empty" - ], - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"settings\"]", - "object-deletion" - ] - ], - [ - [ - "[\"spec\", \"configuration\", \"clusters\", 0, \"settings\"]", - "object-empty" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"generateName\"]", - "string-deletion" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"generateName\"]", - "string-change" - ], - [ - "[\"spec\", \"templates\", \"serviceTemplates\", 0, \"generateName\"]", - "string-empty" - ] - ] - ], - "overspecified_subgroups": [], - "copiedover_subgroups": [] -} \ No newline at end of file diff --git a/clickhouse-result/testrun_info.json b/clickhouse-result/testrun_info.json deleted file mode 100644 index 1c84fb0c56..0000000000 --- a/clickhouse-result/testrun_info.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "normal_duration": 488.4144172668457, - "overspecified_duration": 8.821487426757812e-06, - "copied_over_duration": 7.152557373046875e-07, - "additional_semantic_duration": 2.5033950805664062e-05, - "num_workers": 8, - "num_total_testcases": { - "normal_schemas": 0, - "pruned_by_overspecified": 0, - "pruned_by_copied": 0, - "num_normal_testcases": 994, - "num_overspecified_testcases": 0, - "num_copiedover_testcases": 0, - "semantic_schemas": 0, - "num_semantic_testcases": 0, - "num_additional_semantic_testcases": 112 - }, - "num_total_failed": 0 -} \ No newline at end of file diff --git a/clickhouse-result/trial-00-0000/mutated-000.yaml b/clickhouse-result/trial-00-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-00-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-00-0000/system-state-000.json b/clickhouse-result/trial-00-0000/system-state-000.json deleted file mode 100644 index e9a035f7e7..0000000000 --- a/clickhouse-result/trial-00-0000/system-state-000.json +++ /dev/null @@ -1,11662 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"99848696-077d-46d0-8c59-28850498d13d\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:23+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:24+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.10\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "99848696-077d-46d0-8c59-28850498d13d" - } - ], - "resource_version": "1454", - "self_link": null, - "uid": "d13e14e5-0b9a-4d81-92c2-2cfec56c140e" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-qwtmj", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-0-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-qwtmj", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:28+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:40+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:40+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:28+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://bdf80f417cf239a927a79e3e9a823f48d2f4d2f2217aa9bbc068aa0be5880b46", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:29+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.30", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.10", - "pod_i_ps": [ - { - "ip": "10.244.1.10" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:28+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:10+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"96a37bc9-1340-4b83-9342-513b57853853\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:10+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:11+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "96a37bc9-1340-4b83-9342-513b57853853" - } - ], - "resource_version": "1669", - "self_link": null, - "uid": "f003e597-8779-4795-b4d3-e0533531963e" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-txls6", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-0-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-txls6", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:15+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:27+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:27+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:15+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://61d6c8cab0726900511e8806ab3eeceefc82102592f38744906adb209801f545", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:16+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.27", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.5", - "pod_i_ps": [ - { - "ip": "10.244.2.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:15+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3b6fc2d9-232f-45ff-acf0-0e7626c3bbcb\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:23+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:24+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.9\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "3b6fc2d9-232f-45ff-acf0-0e7626c3bbcb" - } - ], - "resource_version": "1437", - "self_link": null, - "uid": "320231a4-db25-4e80-b37c-899370e83709" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-sw54z", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-0-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-sw54z", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:28+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:40+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:40+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:28+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://88123329e4cf115f8085c0fd62131854a32e9412f80a58811b459ed79ed7cd35", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:29+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.30", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.9", - "pod_i_ps": [ - { - "ip": "10.244.1.9" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:28+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:06+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"5d5eddb5-0aea-49af-bbde-b6dafd2dc182\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:07+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.12\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:23+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "5d5eddb5-0aea-49af-bbde-b6dafd2dc182" - } - ], - "resource_version": "1633", - "self_link": null, - "uid": "8a33f514-5a8f-442b-b4b6-577b73821986" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-88b8r", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-0-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-88b8r", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:11+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:23+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:23+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:11+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://c156cf21b1382d5d90c7ff0f554969b499834cbd39620a4b8bf92fc3de774d8e", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:12+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.30", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.12", - "pod_i_ps": [ - { - "ip": "10.244.1.12" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:11+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:56:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"e819e433-6800-4df1-9bf4-0e6b829be1ba\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:45+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.5\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:56:45+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-4wzmz", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "e819e433-6800-4df1-9bf4-0e6b829be1ba" - } - ], - "resource_version": "1180", - "self_link": null, - "uid": "3c7e2d58-06f9-4efb-b6e0-044900a642fc" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-zz2xw", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-zz2xw", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-0-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-zz2xw", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:44+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:45+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:45+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:44+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://793fae3ecd17f03c4a8ef539723eac6592db84b44f38a00eeccfc6f68600c541", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:56:45+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://2fd9152a32d8ac7cfb0b7bf289ce8c421d26f0c8e296a6b715a1463fbbce1a05", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:56:45+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.28", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.5", - "pod_i_ps": [ - { - "ip": "10.244.3.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:56:44+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "fc22fc5907c1084584602887a1110b5245ce2058", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:23+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1388", - "self_link": null, - "uid": "99848696-077d-46d0-8c59-28850498d13d" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:10+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "1501988690c8b8bd1cf6f4bc4e99feb1dd479fbc", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:10+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:27+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1604", - "self_link": null, - "uid": "96a37bc9-1340-4b83-9342-513b57853853" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "918d6f74dd6a9cd1b01422c0d7f7d29bd2d32125", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:23+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1385", - "self_link": null, - "uid": "3b6fc2d9-232f-45ff-acf0-0e7626c3bbcb" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:06+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "cd68ece2e9395410d98c6cbfc2cf3b06ee349423", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:23+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1594", - "self_link": null, - "uid": "5d5eddb5-0aea-49af-bbde-b6dafd2dc182" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:40+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:44+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:conditions": { - "k:{\"type\":\"Available\"}": { - "f:lastTransitionTime": {}, - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {}, - "f:status": {} - } - }, - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:44+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:56:45+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1195", - "self_link": null, - "uid": "216795fd-e011-4eab-b583-3c89c64742ce" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:56:40+00:00", - "last_update_time": "2024-01-07T16:56:40+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:56:39+00:00", - "last_update_time": "2024-01-07T16:56:45+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:14+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "eb32f3619a59fad403a6974010ce9999daf36a96" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:14+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1659", - "self_link": null, - "uid": "5fea4c0e-b5ed-4a6d-a0eb-18e7419eaa9f" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.3.5\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.1.10\n 10.244.2.5\n 10.244.1.9\n 10.244.1.12\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:15+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "fab0e4dc7becd2ad9cf35a75f5dfa49ac5dbd019" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:15+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1648", - "self_link": null, - "uid": "a7556a34-cae0-4357-b982-de156d002935" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6fa099ce308a5b255077cfbd3f1e48eac548d312", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1271", - "self_link": null, - "uid": "69490894-4e8e-481e-8bb6-f5fe3c5a9b9b" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "5c0ab704096aab8bf9057c34cc2a507961aeb7aa", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:08+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1513", - "self_link": null, - "uid": "f187d21c-7140-4663-9b8c-c80638af03ab" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:18+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ba1fab8d85c2e22337557c5963a477e90f488110", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:18+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1270", - "self_link": null, - "uid": "948fcd9f-34b9-4cf8-be45-5b7eee55b47d" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6b20f93963ce1b156111fbd7b94fb4ced94d3bf9", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:01+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1466", - "self_link": null, - "uid": "8195aae8-d1dc-4fed-9982-339140496493" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1107", - "self_link": null, - "uid": "58292411-ba17-4691-8f70-c72585b8f9c8" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1109", - "self_link": null, - "uid": "3f38952c-9752-477f-9a5c-878299f15ee5" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1106", - "self_link": null, - "uid": "a8cdff96-3906-43c4-b7b7-baba62636542" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1110", - "self_link": null, - "uid": "dc740fe2-2b83-40fc-b9e2-b8d79366fa3e" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1111", - "self_link": null, - "uid": "e998edfb-9e30-4294-ae13-9e5a877a0f21" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1N1oXDTM0MDEwNDE2NTI1N1owFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAONW\nFAp3aSzeMlY7iyOEtPFLEwcBi9jAStVwO/OPXcIweYHEILqdQ4qOqNjzdbSmyzw0\nmcsJ1m0DQcTSZDJ4PkqVaRsMGijZ1Cu4yHJ1UkRC4PpvUGObEJVnCC6fYhlK/AT9\nI3Z6TmRs905FJAhpMLcAlqAW6j0iLj3pNntr64Cuui9aB1Dqs4NMVeYi2OulAw2H\nOaGEn/MnRSSn79NuSd50K5ZNRrvr7MrqqhRDkPmi9vBA9n7jf9i0D/YrlGGskQoy\n28Oa8hE6e2IkZS1osqOhU3JrKrknwE3CyFSqxxb5VQUOUHPmswfoQCkWnWmwZ++R\nZHxqn67MU4Pw16g71hcCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFAa4qlmM00/vp9xsof6Xllv9D72+MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAG3qc6DBIOJ7qBCrAjZd\n2sFSLHvJTwcqSsuSq45PX4PJX440Sk7svzE6dBusvtn7yL5rF46xm235fJyM5AoS\nQYZO9jy95oqRlyqTOS+ZAGraGjOIGc+p/LRIZA4QswUdsPkE5dRzMZ9wuZacSuNS\niR1GFcv0W9AScczkwrYXDMx7LKWWkkR1bl1+vG+rrDKhWIklhkvE6/xR/THUVxr+\niEdzC2GmGyEJP40dNS8c8jHXiOu2Mj2QgDiw2DMkrX3PyLi7fO4gQHKBXiV44R8v\n3JWq7zIyAUCBCXykPdjNUgtn7zkckT1PiYfWI5Y7ptCFBT4GCgZrT36v8cJcRXs5\nM/Y=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:54:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:01+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "707", - "self_link": null, - "uid": "123266ed-287c-4f18-93b2-c34a697aed77" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:57:50+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "afcfd9b6d19bbe4858fac4b538ea497df54dbc37", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:59+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1455", - "self_link": null, - "uid": "4189c0d8-6dfa-42ef-b322-4f01b404a22f" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "cae37a7e18a148a8cd5eb8928a8d40ddea295bfc", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:44+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1672", - "self_link": null, - "uid": "cf152eab-487f-464c-9175-3af3b999e79b" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:57:45+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "53c926923c32a1f3c5c355a85474f99d41977979", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:55+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1438", - "self_link": null, - "uid": "90d32842-db62-4d31-8667-00b7580bc164" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:28+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a4d57c962e0eea1e9892ef2589421e2a79188b8c", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:35+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1636", - "self_link": null, - "uid": "a6baf2a4-9677-464c-b0d2-92c1a98fdcbf" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1118", - "self_link": null, - "uid": "ffa8e68b-655f-40ee-b1e1-c6d9c88d0bb0" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.12.42", - "cluster_i_ps": [ - "10.96.12.42" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:04+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a810e6e04563a64df7537ff212e718738a67873b" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:04+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1478", - "self_link": null, - "uid": "d6fdb42a-a591-4f42-b2ce-c2522403b247" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.107.36", - "cluster_i_ps": [ - "10.96.107.36" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 31223, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 31059, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 30466, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-0-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6d0cdbcd481f35a26a50314dd67bc166bda1f0d1", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:23+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1414", - "self_link": null, - "uid": "e5407996-10a9-416d-bcac-50dbca15f7d5" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-e5407996-10a9-416d-bcac-50dbca15f7d5" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-0-worker" - }, - "creation_timestamp": "2024-01-07T16:58:10+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "f43ba5b67ee4a47e4320ce2d73e59624edcffd68", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:10+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:14+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:36+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1642", - "self_link": null, - "uid": "54c85c62-1aab-4307-a89c-a2256562f91a" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-54c85c62-1aab-4307-a89c-a2256562f91a" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-0-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "fc50ade8d2dc3edf392e097c3abf17f39cc8adde", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:23+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:45+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1399", - "self_link": null, - "uid": "2d3a9c8f-3a7d-4554-86b8-4fa849016511" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-2d3a9c8f-3a7d-4554-86b8-4fa849016511" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-0-worker2" - }, - "creation_timestamp": "2024-01-07T16:58:06+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "8ee9c51d6e49c8ec83897f4c9f453f002d9fa0d9", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:10+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1605", - "self_link": null, - "uid": "a70601df-de8a-4d81-aa1b-f8fd1db5331d" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-a70601df-de8a-4d81-aa1b-f8fd1db5331d" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:16+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"13807648-9806-4a9f-a9f4-b84028129d04\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:16+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - } - ], - "resource_version": "1603", - "self_link": null, - "uid": "5cdb685c-5891-4dc0-9685-62325a819df4" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:58:27+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1113", - "self_link": null, - "uid": "1b5b52f1-ed84-423c-a0ea-176424485965" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-sf52t": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1N1oXDTM0MDEwNDE2NTI1N1owFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAONW\nFAp3aSzeMlY7iyOEtPFLEwcBi9jAStVwO/OPXcIweYHEILqdQ4qOqNjzdbSmyzw0\nmcsJ1m0DQcTSZDJ4PkqVaRsMGijZ1Cu4yHJ1UkRC4PpvUGObEJVnCC6fYhlK/AT9\nI3Z6TmRs905FJAhpMLcAlqAW6j0iLj3pNntr64Cuui9aB1Dqs4NMVeYi2OulAw2H\nOaGEn/MnRSSn79NuSd50K5ZNRrvr7MrqqhRDkPmi9vBA9n7jf9i0D/YrlGGskQoy\n28Oa8hE6e2IkZS1osqOhU3JrKrknwE3CyFSqxxb5VQUOUHPmswfoQCkWnWmwZ++R\nZHxqn67MU4Pw16g71hcCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFAa4qlmM00/vp9xsof6Xllv9D72+MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAG3qc6DBIOJ7qBCrAjZd\n2sFSLHvJTwcqSsuSq45PX4PJX440Sk7svzE6dBusvtn7yL5rF46xm235fJyM5AoS\nQYZO9jy95oqRlyqTOS+ZAGraGjOIGc+p/LRIZA4QswUdsPkE5dRzMZ9wuZacSuNS\niR1GFcv0W9AScczkwrYXDMx7LKWWkkR1bl1+vG+rrDKhWIklhkvE6/xR/THUVxr+\niEdzC2GmGyEJP40dNS8c8jHXiOu2Mj2QgDiw2DMkrX3PyLi7fO4gQHKBXiV44R8v\n3JWq7zIyAUCBCXykPdjNUgtn7zkckT1PiYfWI5Y7ptCFBT4GCgZrT36v8cJcRXs5\nM/Y=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ii1jLXFPLXBwOWp4RERtaV9CWUVhZzFQY19iSl9zaElPUDB0c1ZZOGZ0TFEifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi1zZjUydCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiNDdkNDhiOTgtY2NlNS00ZWM2LWJiNDItYjI0Y2NkNDdlYmZlIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.VRSU4NPGn-jGuC7sOWw6yHDag4sA-AQvo1Ewbj-TyOQ1bgc09TCEK6gU69vp7nIVWQTtvj6YXhJqmKZMqbqhbGsE3wpjNpDNQbPLw5wUuPwPS5tN8KHTTMVUND90EMGHbLZryedPTYk21vgHEhPpTHs49N82qCOqrpxLne0XRy4vFS9WxkkD7O9HYmIsFhEmBaAm-7t8j6FJyR95Fumvv8d5ub8ft9_jQkiEYOynGMYvUL7fOXlXZK0CzSJPT14Sy5ERptfgQJ8g97K2zWyVfuYgMoi_uh9qzStqkZdAnRYjaJ3R1eyNZYcFCJXSR-s-zDJCwQEDi5ztgESVy3023g" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "47d48b98-cce5-4ec6-bb42-b24ccd47ebfe" - }, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "clickhouse-operator-token-sf52t", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1103", - "self_link": null, - "uid": "6bb4bfae-3aa0-47b7-9591-650bbcc47334" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-6xc5h": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1N1oXDTM0MDEwNDE2NTI1N1owFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAONW\nFAp3aSzeMlY7iyOEtPFLEwcBi9jAStVwO/OPXcIweYHEILqdQ4qOqNjzdbSmyzw0\nmcsJ1m0DQcTSZDJ4PkqVaRsMGijZ1Cu4yHJ1UkRC4PpvUGObEJVnCC6fYhlK/AT9\nI3Z6TmRs905FJAhpMLcAlqAW6j0iLj3pNntr64Cuui9aB1Dqs4NMVeYi2OulAw2H\nOaGEn/MnRSSn79NuSd50K5ZNRrvr7MrqqhRDkPmi9vBA9n7jf9i0D/YrlGGskQoy\n28Oa8hE6e2IkZS1osqOhU3JrKrknwE3CyFSqxxb5VQUOUHPmswfoQCkWnWmwZ++R\nZHxqn67MU4Pw16g71hcCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFAa4qlmM00/vp9xsof6Xllv9D72+MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAG3qc6DBIOJ7qBCrAjZd\n2sFSLHvJTwcqSsuSq45PX4PJX440Sk7svzE6dBusvtn7yL5rF46xm235fJyM5AoS\nQYZO9jy95oqRlyqTOS+ZAGraGjOIGc+p/LRIZA4QswUdsPkE5dRzMZ9wuZacSuNS\niR1GFcv0W9AScczkwrYXDMx7LKWWkkR1bl1+vG+rrDKhWIklhkvE6/xR/THUVxr+\niEdzC2GmGyEJP40dNS8c8jHXiOu2Mj2QgDiw2DMkrX3PyLi7fO4gQHKBXiV44R8v\n3JWq7zIyAUCBCXykPdjNUgtn7zkckT1PiYfWI5Y7ptCFBT4GCgZrT36v8cJcRXs5\nM/Y=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ii1jLXFPLXBwOWp4RERtaV9CWUVhZzFQY19iSl9zaElPUDB0c1ZZOGZ0TFEifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi02eGM1aCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiMGE0MWI4NTEtNDdlZi00ZmJiLTlmODktNzU0MmE2ZDFjMmEzIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.IPahETRa4IRk12egnqjBabBikSEZO1wu7-5RXALFfhb9gtBeMTT84nS2EidDILnkpUabnrN4ILnvgy2QicwwabNc5pSqds5XdVDbzBQdVH281MDuYgRphfs4TSnEaIkFiG6jno3ac96_5HdeqFciPPQpK2-bU7DFrNhWzOpxK35-qByBUTbHsvLJ4RAc0P-wqYA2h7Z8dcENHqrMxIXCHkrWFgaA5GKaUNV_UHNBTbCaSqALLv-HN9anmEymzgtFC0c8ThoibjtLEmSY53pY8gYSW5VNDVYOCwThaY-DXTg74vtfbzNeRrR5y_JDtvqTDRWUFrXaCl9pxR6hnwcNHg" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "0a41b851-47ef-4fbb-9f89-7542a6d1c2a3" - }, - "creation_timestamp": "2024-01-07T16:54:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:01+00:00" - } - ], - "name": "default-token-6xc5h", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "708", - "self_link": null, - "uid": "2f6fdab7-132d-4602-87c4-bb35fcea2948" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:50+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "afcfd9b6d19bbe4858fac4b538ea497df54dbc37", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:59+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1456", - "self_link": null, - "uid": "3ac08db4-8a49-4e3f-84f2-0505b3795da0" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-0-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1454", - "uid": "d13e14e5-0b9a-4d81-92c2-2cfec56c140e" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "cae37a7e18a148a8cd5eb8928a8d40ddea295bfc", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:44+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1674", - "self_link": null, - "uid": "c270f124-8686-4d57-88f2-d786f0c977f2" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-0-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1669", - "uid": "f003e597-8779-4795-b4d3-e0533531963e" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:45+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "53c926923c32a1f3c5c355a85474f99d41977979", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:55+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1440", - "self_link": null, - "uid": "8a305a72-3698-4cb3-9bec-8af78d4e1a6a" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.1.9", - "node_name": "acto-0-cluster-0-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1437", - "uid": "320231a4-db25-4e80-b37c-899370e83709" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:28+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a4d57c962e0eea1e9892ef2589421e2a79188b8c", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:35+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1637", - "self_link": null, - "uid": "1fabc890-552e-4bb5-888a-cb4c12084cbf" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.1.12", - "node_name": "acto-0-cluster-0-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1633", - "uid": "8a33f514-5a8f-442b-b4b6-577b73821986" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:45+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1188", - "self_link": null, - "uid": "6f87c14f-b7d4-4f41-aa7f-a2c36d803b0a" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-0-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-4wzmz", - "namespace": "acto-clickhouse", - "resource_version": "1180", - "uid": "3c7e2d58-06f9-4efb-b6e0-044900a642fc" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:58:27Z" - }, - "creation_timestamp": "2024-01-07T16:58:04+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a810e6e04563a64df7537ff212e718738a67873b" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:04+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1670", - "self_link": null, - "uid": "ffe6a66e-cce1-40d2-ba3c-9ee2971f23ef" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-0-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1454", - "uid": "d13e14e5-0b9a-4d81-92c2-2cfec56c140e" - } - }, - { - "hostname": null, - "ip": "10.244.1.12", - "node_name": "acto-0-cluster-0-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1633", - "uid": "8a33f514-5a8f-442b-b4b6-577b73821986" - } - }, - { - "hostname": null, - "ip": "10.244.1.9", - "node_name": "acto-0-cluster-0-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1437", - "uid": "320231a4-db25-4e80-b37c-899370e83709" - } - }, - { - "hostname": null, - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-0-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1669", - "uid": "f003e597-8779-4795-b4d3-e0533531963e" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:39+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-sf52t\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:39+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1105", - "self_link": null, - "uid": "47d48b98-cce5-4ec6-bb42-b24ccd47ebfe" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-sf52t", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:54:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "709", - "self_link": null, - "uid": "0a41b851-47ef-4fbb-9f89-7542a6d1c2a3" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-6xc5h", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: df13ed36-6127-4327-b466-bb16aadb8cfc", - "actions": [ - "2024-01-07T16:58:56.967621498Z reconcile completed successfully, task id: df13ed36-6127-4327-b466-bb16aadb8cfc", - "2024-01-07T16:57:12.86165968Z reconcile started, task id: df13ed36-6127-4327-b466-bb16aadb8cfc" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.3.5", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:12Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1703", - "uid": "13807648-9806-4a9f-a9f4-b84028129d04" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.3.5" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.1.10", - "10.244.2.5", - "10.244.1.9", - "10.244.1.12" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "9ddd69c5-129f-4493-b00f-9491257e1036", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.1.10", - "10.244.2.5", - "10.244.1.9", - "10.244.1.12" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "9ddd69c5-129f-4493-b00f-9491257e1036", - "taskIDsCompleted": [ - "9ddd69c5-129f-4493-b00f-9491257e1036" - ], - "taskIDsStarted": [ - "df13ed36-6127-4327-b466-bb16aadb8cfc" - ] - } -} \ No newline at end of file diff --git a/clickhouse-result/trial-01-0000/mutated-000.yaml b/clickhouse-result/trial-01-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-01-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-01-0000/system-state-000.json b/clickhouse-result/trial-01-0000/system-state-000.json deleted file mode 100644 index b390acf813..0000000000 --- a/clickhouse-result/trial-01-0000/system-state-000.json +++ /dev/null @@ -1,11661 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:51+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3898deb1-9ed4-45d2-8ee6-0d3656d2fcf4\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:51+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:52+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.7\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:08+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "3898deb1-9ed4-45d2-8ee6-0d3656d2fcf4" - } - ], - "resource_version": "1490", - "self_link": null, - "uid": "48878782-910e-4e7f-9c9b-949283e29405" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-5dsd4", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-1-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-5dsd4", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:56+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:56+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://ab7ac2063a4ea05876f6091870475b0a33985502ffe9d66957797c917ab35a12", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:57+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.22", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.7", - "pod_i_ps": [ - { - "ip": "10.244.2.7" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:56+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"573a2a4f-cf33-4cf2-83b1-da6cfc2d04bb\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:37+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:38+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.9\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:54+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "573a2a4f-cf33-4cf2-83b1-da6cfc2d04bb" - } - ], - "resource_version": "1685", - "self_link": null, - "uid": "b69d51ff-976e-4882-88d5-cd2586010072" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-7865s", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-1-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-7865s", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:42+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:42+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://6c713ad336e7531f0e0fb15c1ac2f8e0c3e2eb03a927cfc5a0d73101b45892d6", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:43+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.22", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.9", - "pod_i_ps": [ - { - "ip": "10.244.2.9" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:42+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:51+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"0e209185-b55c-4866-b702-3d9a35f957e4\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:51+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:52+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:08+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "0e209185-b55c-4866-b702-3d9a35f957e4" - } - ], - "resource_version": "1507", - "self_link": null, - "uid": "7202f9c0-333f-4302-aba1-29587dd5e723" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-9bxwx", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-1-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-9bxwx", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:55+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:55+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://463a30f0211b01de8e9df28d66ea585d9b84b5c9ada9e3d190d541e06a06f8d2", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:56+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.20", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.5", - "pod_i_ps": [ - { - "ip": "10.244.3.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:55+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:38+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"8d2d7c81-74d7-490a-b280-36aed99df44c\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:38+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:39+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.8\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:55+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "8d2d7c81-74d7-490a-b280-36aed99df44c" - } - ], - "resource_version": "1716", - "self_link": null, - "uid": "e87d2f65-cded-40f9-8556-01d2e7b89407" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-2ksgr", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-1-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-2ksgr", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:55+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:55+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://99fde0eb4f12775074ccc15c1430bf46f8256866a79766db53e5663b2908ca2f", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:44+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.21", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.8", - "pod_i_ps": [ - { - "ip": "10.244.1.8" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:43+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:57:13+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"aa914daa-05b2-4d02-94bd-87b2ede60798\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:13+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:13+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:14+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.5\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:14+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-7hpwp", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "aa914daa-05b2-4d02-94bd-87b2ede60798" - } - ], - "resource_version": "1237", - "self_link": null, - "uid": "df8d0bde-952f-449d-b9ba-129e97e72ad1" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-bf2s8", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-bf2s8", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-1-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-bf2s8", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:13+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:14+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:14+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:13+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://ca90a164b0aaa7196c03008797bca767e8b019a9387255d4df7493f634c44958", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:14+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://ef668b4fc2e92791229b392448c006f17d723f1f9e5f9aac3a7857430bde7492", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:14+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.22", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.5", - "pod_i_ps": [ - { - "ip": "10.244.2.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:13+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:51+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b2b7931dcec4e86b7eeca347fc6f66d1c4520d8f", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:51+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:08+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1439", - "self_link": null, - "uid": "3898deb1-9ed4-45d2-8ee6-0d3656d2fcf4" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "d589d494ef181e3d7a85937d6081f9c00fb4a213", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:37+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:54+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1648", - "self_link": null, - "uid": "573a2a4f-cf33-4cf2-83b1-da6cfc2d04bb" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:51+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a09e24a81f133363021c071bacf05acbaebd3be6", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:51+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:08+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1436", - "self_link": null, - "uid": "0e209185-b55c-4866-b702-3d9a35f957e4" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:38+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "d3f8795dc34e466bb78a17459eea9fd57523ebe3", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:38+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:55+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1656", - "self_link": null, - "uid": "8d2d7c81-74d7-490a-b280-36aed99df44c" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:09+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:13+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:conditions": { - "k:{\"type\":\"Available\"}": { - "f:lastTransitionTime": {}, - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {}, - "f:status": {} - } - }, - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:13+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:14+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1252", - "self_link": null, - "uid": "2f216c04-55d0-48c2-ba43-35acfd928a7a" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:57:09+00:00", - "last_update_time": "2024-01-07T16:57:09+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:57:08+00:00", - "last_update_time": "2024-01-07T16:57:14+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:42+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "38e050b7646acaff39f48eb73974303c7dcaeafc" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:42+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1705", - "self_link": null, - "uid": "0e2a6d9b-e141-4813-8856-7bb139c334f5" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.2.5\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.2.7\n 10.244.2.9\n 10.244.3.5\n 10.244.1.8\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ae160fa87d863c6880b966b404230cc94e633b12" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1702", - "self_link": null, - "uid": "9a1b1d27-f0c5-4d72-a948-cb89c07f6f62" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:47+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "37a913aebf471b43348d763ad20f529be6b18ff0", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:47+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1324", - "self_link": null, - "uid": "3970da6d-8de1-4016-bd56-a9cc0cdf72dc" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:33+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6d5bb99d0ec37668492372e56901d8c97d1c5dca", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:33+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1536", - "self_link": null, - "uid": "10f1fb0a-b210-4b51-a92f-0e834838304c" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:47+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ab61024f4f301b16ceb36ffd8da8811488978f4b", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:47+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1325", - "self_link": null, - "uid": "a6342512-c913-4f02-9acd-63e33a55a23c" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:34+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "449b5c0d1db70de242174ab67d450ccb0366f61c", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:34+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1539", - "self_link": null, - "uid": "da0e7acb-1f46-486d-9dd5-b7e45e65c087" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1162", - "self_link": null, - "uid": "5dabf939-c9a7-48dd-ab38-e81d96605649" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1163", - "self_link": null, - "uid": "cdde754e-b597-40aa-8122-9441aabb6479" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1161", - "self_link": null, - "uid": "6d107bfd-115b-464a-9a0a-8907793612ad" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1164", - "self_link": null, - "uid": "e37840ae-81e3-4d45-bfa1-4aa405a17604" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1165", - "self_link": null, - "uid": "1f4282ab-54f0-48f9-9d36-c3de5deb6caf" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALSY\ntJ+MRgKch6B5wJRLsBsQ2s1Q2Ey2utbLQTOa13vLJ3jeOcaU92hTd1RbBfDxTKYY\nxCNu3LSk36sNq/WbHpInZP1M0el7j0dSBMVDB4UdIGFAM51p7BQmRxLPbTiCe/CI\nzWuqemHieg8fRBtSaAYTEP+HCWnnwn1Kl1+NAP7HrQXz1EYqwjmkojzcP0eAvBTS\nTtyXif7p8VI4Xt/PBGe/mRf4pnMAwcQg9C0JC7+2+DI8q40Uvoiv5F48qTN5sA61\nVnU5HwZzNVLJ9d9fBHjoRso/F4mwrvYmiqfYBv/R39nXmnZWXzYo4x1yveuV1hJd\nt63IJmVdEqaBDIqWoPMCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFLBDoKqem30WwK+yJrc9JczdS5c7MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAIXljsAT+s5r6jnM+Ys6\nYJIaA/H0EB73qz1kTL+6ADOgGai61Dvh48iHyytdz01e80808xQj9W05UwetjiX4\nYUvXuXB65lU2iA5Tjt0lPREcS42wIwGNunshSJdlLls5FqL8JFo4z+Id3bjOifRv\n/Bc3GHiMfdyjcQnULGK6H3F2k3nea2V+AQNkukqF8DwrGAO7DaLEAyyTqgtcKZgM\n/ae6s2KXdUX2nY4rpYAPyuKxdbtX5MeUyneqOvMNAl4UgsPrsrj89Spfn0ctemMN\nUyZTfL7Ip0QAd6WVh9tFZVepaS2GP5evnjVE/9wvTbNuQucxAANHmmcwjTIOXqXz\nPnw=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:53:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:59+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "717", - "self_link": null, - "uid": "5cd36453-e854-47fc-97bd-476f73a00bef" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:14+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "efb1ad672117a6e6dd5110866f90f63937d454af", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:24+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1491", - "self_link": null, - "uid": "ee9f0e8b-f7b9-4ab0-ba2c-80e24ec23976" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "24ef1badda93ec1a7da2f53a21d41b4808c817bb", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:05+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1691", - "self_link": null, - "uid": "abf56001-cbc5-4832-b6f6-56d6641d2004" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:18+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "466d2e2859e94b77c48bc99bfade1b19e52a283e", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:28+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1508", - "self_link": null, - "uid": "4bb4d4e2-cb3c-4fdf-a188-6f626bfe9191" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:59:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "109d2802492757d5f502dc8f4c2ccc9ddc29965f", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:12+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1720", - "self_link": null, - "uid": "006e4090-3225-4742-8fe3-a55a9b7d47da" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1171", - "self_link": null, - "uid": "3a4d0349-f38c-44c5-8374-370f8df00d3a" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.108.209", - "cluster_i_ps": [ - "10.96.108.209" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:28+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "c9b34984045fb5ea37ff5405c87e33a58ced69c9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:28+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1516", - "self_link": null, - "uid": "029ee221-600d-4295-9735-26adbb496fdc" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.68.113", - "cluster_i_ps": [ - "10.96.68.113" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 32521, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 32297, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 31910, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-1-worker3" - }, - "creation_timestamp": "2024-01-07T16:57:51+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "dc91cce13f62009af14e3445bee2e6f26a1212a1", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:51+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:55+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:13+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1452", - "self_link": null, - "uid": "b48a2cdd-af3c-40b2-ad8a-f65c59f5b4f3" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-b48a2cdd-af3c-40b2-ad8a-f65c59f5b4f3" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-1-worker3" - }, - "creation_timestamp": "2024-01-07T16:58:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "acb5a8f9f6d5fd7bc4b6028614207f2adc6bd768", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:37+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:41+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:59+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1664", - "self_link": null, - "uid": "17b8bc2b-7b7c-4838-979b-99690d9c961a" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-17b8bc2b-7b7c-4838-979b-99690d9c961a" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-1-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:51+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "22d1c1c053fdbb0996a2b1193b2fd0d4d2f917d8", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:51+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:55+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:17+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1467", - "self_link": null, - "uid": "47214420-b27f-46e3-a62f-7d332409fcac" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-47214420-b27f-46e3-a62f-7d332409fcac" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-1-worker" - }, - "creation_timestamp": "2024-01-07T16:58:38+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "334e007568bea3743366afee2e691d01cd06ca01", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:38+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:42+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:04+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1684", - "self_link": null, - "uid": "25e93c7f-f8db-492b-acba-c8cad6a2bd20" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-25e93c7f-f8db-492b-acba-c8cad6a2bd20" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:45+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"650f7472-514b-4706-97c6-4cd7b66c6948\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:45+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:08+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - } - ], - "resource_version": "1655", - "self_link": null, - "uid": "64ba1135-e680-4880-8783-a4241595fc36" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:58:55+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1166", - "self_link": null, - "uid": "7ca366be-e903-4d82-9592-0d1ac71bbb50" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-gcl8l": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALSY\ntJ+MRgKch6B5wJRLsBsQ2s1Q2Ey2utbLQTOa13vLJ3jeOcaU92hTd1RbBfDxTKYY\nxCNu3LSk36sNq/WbHpInZP1M0el7j0dSBMVDB4UdIGFAM51p7BQmRxLPbTiCe/CI\nzWuqemHieg8fRBtSaAYTEP+HCWnnwn1Kl1+NAP7HrQXz1EYqwjmkojzcP0eAvBTS\nTtyXif7p8VI4Xt/PBGe/mRf4pnMAwcQg9C0JC7+2+DI8q40Uvoiv5F48qTN5sA61\nVnU5HwZzNVLJ9d9fBHjoRso/F4mwrvYmiqfYBv/R39nXmnZWXzYo4x1yveuV1hJd\nt63IJmVdEqaBDIqWoPMCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFLBDoKqem30WwK+yJrc9JczdS5c7MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAIXljsAT+s5r6jnM+Ys6\nYJIaA/H0EB73qz1kTL+6ADOgGai61Dvh48iHyytdz01e80808xQj9W05UwetjiX4\nYUvXuXB65lU2iA5Tjt0lPREcS42wIwGNunshSJdlLls5FqL8JFo4z+Id3bjOifRv\n/Bc3GHiMfdyjcQnULGK6H3F2k3nea2V+AQNkukqF8DwrGAO7DaLEAyyTqgtcKZgM\n/ae6s2KXdUX2nY4rpYAPyuKxdbtX5MeUyneqOvMNAl4UgsPrsrj89Spfn0ctemMN\nUyZTfL7Ip0QAd6WVh9tFZVepaS2GP5evnjVE/9wvTbNuQucxAANHmmcwjTIOXqXz\nPnw=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IlpJQkZMcTlhR2RWVFVpOVBrSW1QdDF5VXYyV3dJM1pmc1NjMGxmZWp4NzAifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi1nY2w4bCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiMTg0MWFiNzUtNDUwMy00MDU3LThjZDQtN2EyYzZkZWUwYzEyIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.Dr0rwOhYNMN2ySQjR6Jlod86k7Q8FO_XUGiqv1UCMaex_Rhrmcfvj0DJ1sbAVUtMRmzzsJideOx_nrXfGRGP5H8Vr7ZMbX3FVziPtEvAWEAPP8potb9L0mAqUMfhHn-lz06EAaGX5IKfo8-3VpHDvPp1xlEALP2tNNZTkJTxBYOB6e3FHGmXdslcs2tXdtyOMUuXUUzPhVCJXpeKNo6swhR6Bpuuc3LU1eLPnt4yumS5LNbWw3W52md-Gf8Hxnqb0C8Ger7GZ01inH-YiyrWPdyBNN5cUFWRfkkPlVnY1mvrynBlfGOR8pLjWjhTziTpCSy5yzux5FovN054PHaabQ" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "1841ab75-4503-4057-8cd4-7a2c6dee0c12" - }, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "clickhouse-operator-token-gcl8l", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1159", - "self_link": null, - "uid": "9cfe7a7c-dc5c-407b-8055-af71a427bf4a" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-9lq4k": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALSY\ntJ+MRgKch6B5wJRLsBsQ2s1Q2Ey2utbLQTOa13vLJ3jeOcaU92hTd1RbBfDxTKYY\nxCNu3LSk36sNq/WbHpInZP1M0el7j0dSBMVDB4UdIGFAM51p7BQmRxLPbTiCe/CI\nzWuqemHieg8fRBtSaAYTEP+HCWnnwn1Kl1+NAP7HrQXz1EYqwjmkojzcP0eAvBTS\nTtyXif7p8VI4Xt/PBGe/mRf4pnMAwcQg9C0JC7+2+DI8q40Uvoiv5F48qTN5sA61\nVnU5HwZzNVLJ9d9fBHjoRso/F4mwrvYmiqfYBv/R39nXmnZWXzYo4x1yveuV1hJd\nt63IJmVdEqaBDIqWoPMCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFLBDoKqem30WwK+yJrc9JczdS5c7MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAIXljsAT+s5r6jnM+Ys6\nYJIaA/H0EB73qz1kTL+6ADOgGai61Dvh48iHyytdz01e80808xQj9W05UwetjiX4\nYUvXuXB65lU2iA5Tjt0lPREcS42wIwGNunshSJdlLls5FqL8JFo4z+Id3bjOifRv\n/Bc3GHiMfdyjcQnULGK6H3F2k3nea2V+AQNkukqF8DwrGAO7DaLEAyyTqgtcKZgM\n/ae6s2KXdUX2nY4rpYAPyuKxdbtX5MeUyneqOvMNAl4UgsPrsrj89Spfn0ctemMN\nUyZTfL7Ip0QAd6WVh9tFZVepaS2GP5evnjVE/9wvTbNuQucxAANHmmcwjTIOXqXz\nPnw=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IlpJQkZMcTlhR2RWVFVpOVBrSW1QdDF5VXYyV3dJM1pmc1NjMGxmZWp4NzAifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi05bHE0ayIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiZjI1NmZhZjgtZGFiOC00MzcyLTk5MDUtMzQyNDEzYjQ3YTdlIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.tIG9lGhqz99ZWMNrCnGc3hchbMT6eiYuNdxXMcqtNon2Gbo_Qq8AkzWyxqKAk6SKX2ab6Yu9swoixilCXuTjYxe7dkG6FC3-w_P2P1ZGChWJ1ecr2L-U5cZPv3sHAoaFXoyD7GrlqHIJPwsbGKptSpeKkhPEsmYzN2uUw7i0gC0qOmelwKJtNtzs9Y84qxW7DfPSxHTNcsIuHMxPXppaIS3TiRMu3hgbTdPAYpQHaKrx3exRoJz51T9VnZ5dJjMkwSO7--LR8woEPOpbVCFnJyJPTgIZjMpGMq6JR1lou2bzrYfVBw-kx8D4idmV53gTKfX2k1UHRS8840AeHDJuyQ" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "f256faf8-dab8-4372-9905-342413b47a7e" - }, - "creation_timestamp": "2024-01-07T16:53:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:59+00:00" - } - ], - "name": "default-token-9lq4k", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "719", - "self_link": null, - "uid": "12434b72-9b55-4828-940b-837704df1d6c" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:14+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "efb1ad672117a6e6dd5110866f90f63937d454af", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:24+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1492", - "self_link": null, - "uid": "aceeb419-9874-4c9e-beb9-fe22ceaf5bf2" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.2.7", - "node_name": "acto-0-cluster-1-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1490", - "uid": "48878782-910e-4e7f-9c9b-949283e29405" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "24ef1badda93ec1a7da2f53a21d41b4808c817bb", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:05+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1693", - "self_link": null, - "uid": "e5ac256d-26b4-4d79-961d-3bf6813a20fb" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.2.9", - "node_name": "acto-0-cluster-1-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1685", - "uid": "b69d51ff-976e-4882-88d5-cd2586010072" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:18+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "466d2e2859e94b77c48bc99bfade1b19e52a283e", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:28+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1509", - "self_link": null, - "uid": "5d7cca88-7cad-41ba-8161-22a2cb829dda" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-1-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1507", - "uid": "7202f9c0-333f-4302-aba1-29587dd5e723" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:59:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "109d2802492757d5f502dc8f4c2ccc9ddc29965f", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:12+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1722", - "self_link": null, - "uid": "83a70001-b0e9-41b1-81e2-127cb3c815a7" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-1-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1716", - "uid": "e87d2f65-cded-40f9-8556-01d2e7b89407" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:14+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1247", - "self_link": null, - "uid": "5bdd7d59-d5fc-4a21-bee0-c20dc7170cfc" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-1-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-7hpwp", - "namespace": "acto-clickhouse", - "resource_version": "1237", - "uid": "df8d0bde-952f-449d-b9ba-129e97e72ad1" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:58:55Z" - }, - "creation_timestamp": "2024-01-07T16:58:28+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "c9b34984045fb5ea37ff5405c87e33a58ced69c9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:28+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1718", - "self_link": null, - "uid": "dc1458c6-1c56-4279-9c78-bf211aa9b190" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-1-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1716", - "uid": "e87d2f65-cded-40f9-8556-01d2e7b89407" - } - }, - { - "hostname": null, - "ip": "10.244.2.7", - "node_name": "acto-0-cluster-1-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1490", - "uid": "48878782-910e-4e7f-9c9b-949283e29405" - } - }, - { - "hostname": null, - "ip": "10.244.2.9", - "node_name": "acto-0-cluster-1-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1685", - "uid": "b69d51ff-976e-4882-88d5-cd2586010072" - } - }, - { - "hostname": null, - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-1-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1507", - "uid": "7202f9c0-333f-4302-aba1-29587dd5e723" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:08+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-gcl8l\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1160", - "self_link": null, - "uid": "1841ab75-4503-4057-8cd4-7a2c6dee0c12" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-gcl8l", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:53:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "720", - "self_link": null, - "uid": "f256faf8-dab8-4372-9905-342413b47a7e" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-9lq4k", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: 4710feb8-f232-44ba-b5fc-adc0e41959bb", - "actions": [ - "2024-01-07T16:59:25.691225954Z reconcile completed successfully, task id: 4710feb8-f232-44ba-b5fc-adc0e41959bb", - "2024-01-07T16:57:41.388078005Z reconcile started, task id: 4710feb8-f232-44ba-b5fc-adc0e41959bb" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.2.5", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:41Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1751", - "uid": "650f7472-514b-4706-97c6-4cd7b66c6948" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.2.5" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.2.7", - "10.244.2.9", - "10.244.3.5", - "10.244.1.8" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "f713d56b-3df3-47d1-bb94-fabdb15a10e4", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.2.7", - "10.244.2.9", - "10.244.3.5", - "10.244.1.8" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "f713d56b-3df3-47d1-bb94-fabdb15a10e4", - "taskIDsCompleted": [ - "f713d56b-3df3-47d1-bb94-fabdb15a10e4" - ], - "taskIDsStarted": [ - "4710feb8-f232-44ba-b5fc-adc0e41959bb" - ] - } -} \ No newline at end of file diff --git a/clickhouse-result/trial-02-0000/mutated-000.yaml b/clickhouse-result/trial-02-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-02-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-02-0000/system-state-000.json b/clickhouse-result/trial-02-0000/system-state-000.json deleted file mode 100644 index 80c0251a59..0000000000 --- a/clickhouse-result/trial-02-0000/system-state-000.json +++ /dev/null @@ -1,11662 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:43+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"d80a8ed1-a18c-4794-b10f-7dacc88f17fa\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.7\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:00+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "d80a8ed1-a18c-4794-b10f-7dacc88f17fa" - } - ], - "resource_version": "1479", - "self_link": null, - "uid": "9d18dcbd-b26e-4a14-b2d9-3a84e51436fb" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-g4d5q", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-2-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-g4d5q", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:48+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:00+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:00+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:48+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://ce476df56f78574fa49b5a8a8fc9f118a58939a3799f2c1f0b3efc506657aaed", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:49+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.31", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.7", - "pod_i_ps": [ - { - "ip": "10.244.1.7" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:48+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:30+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"25c20df7-5d4c-47bd-bf32-a55ff5381618\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:31+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.11\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:46+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "25c20df7-5d4c-47bd-bf32-a55ff5381618" - } - ], - "resource_version": "1694", - "self_link": null, - "uid": "aab9e95c-0d73-466f-9e17-7fdb55aaf4df" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-b2xn9", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-2-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-b2xn9", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:34+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:46+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:46+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:34+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://c2f871d370a6679ebec3a0e4c617522c1319a4a6abf02599dc8706c9a740a5f3", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:35+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.31", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.11", - "pod_i_ps": [ - { - "ip": "10.244.1.11" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:34+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:43+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"0876c624-1c2d-4ddc-a139-e9a4b35728b2\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:00+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "0876c624-1c2d-4ddc-a139-e9a4b35728b2" - } - ], - "resource_version": "1462", - "self_link": null, - "uid": "c8f22546-406c-41a9-bcf4-c5f593a9e731" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-q2ztt", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-2-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-q2ztt", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:48+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:00+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:00+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:48+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://261650c114a7fa990f2de0306e14eba18448f43a67dae45140808f294e05d6cd", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:48+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.34", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.5", - "pod_i_ps": [ - { - "ip": "10.244.3.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:48+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"7fd5fe24-1579-4e93-ad08-54cbeab048c0\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.10\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "7fd5fe24-1579-4e93-ad08-54cbeab048c0" - } - ], - "resource_version": "1656", - "self_link": null, - "uid": "63542b26-757e-48fb-be20-48d85ea2827a" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-msfx4", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-2-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-msfx4", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:31+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:31+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://fb5d4e5080fe7ff1c5083673a31f1f8843a899deda436226c7e3cf0324a24fcd", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:31+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.31", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.10", - "pod_i_ps": [ - { - "ip": "10.244.1.10" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:31+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:57:04+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"442b124e-741b-4235-9198-1124fa83b9d6\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:04+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:04+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.5\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:06+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-hkfvr", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "442b124e-741b-4235-9198-1124fa83b9d6" - } - ], - "resource_version": "1209", - "self_link": null, - "uid": "f75da726-834d-47a0-9012-22e685157a7a" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-8ntbq", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-8ntbq", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-2-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-8ntbq", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:04+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:04+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://8ffd1f7fbf7c6ba4e08560fdaaafabde951764d513db12fca56ee47dc43b7d75", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:05+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://b6fbed82e0d3176fe6d882c025ba54959aa5e09a2d9cfd1d2f09fb4eff3e35f2", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:05+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.31", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.5", - "pod_i_ps": [ - { - "ip": "10.244.1.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:04+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:43+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "9a53f779faf9936d5b8739e408f961cb8274d8e3", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:00+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1412", - "self_link": null, - "uid": "d80a8ed1-a18c-4794-b10f-7dacc88f17fa" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:30+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "d34aac3cdb3558ada99e70d7dab572dbb9b9d88e", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:46+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1622", - "self_link": null, - "uid": "25c20df7-5d4c-47bd-bf32-a55ff5381618" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:43+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "83cf6605c20b34c5d35c4b942c4d04aa4fcc9cc5", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:00+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1407", - "self_link": null, - "uid": "0876c624-1c2d-4ddc-a139-e9a4b35728b2" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "31aa8b29fa7d4a5865a8dfe4469405e6cd2bdd87", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1616", - "self_link": null, - "uid": "7fd5fe24-1579-4e93-ad08-54cbeab048c0" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:00+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:04+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:conditions": { - "k:{\"type\":\"Available\"}": { - "f:lastTransitionTime": {}, - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {}, - "f:status": {} - } - }, - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:04+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:06+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1224", - "self_link": null, - "uid": "79ee1473-5c3a-4c68-9f69-d8ca7cfc183b" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:57:01+00:00", - "last_update_time": "2024-01-07T16:57:01+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:56:59+00:00", - "last_update_time": "2024-01-07T16:57:06+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:34+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "3b65dc77ac3e43c6e771460c000a24eb2c1281a2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:34+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1685", - "self_link": null, - "uid": "61637916-a2a6-46a3-90f8-77943ed80964" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.1.5\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.1.7\n 10.244.1.11\n 10.244.3.5\n 10.244.1.10\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:35+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "c3589378e1a06cc7748bd95cf696fa216cc1adb9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:35+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1669", - "self_link": null, - "uid": "4328016a-22e4-461b-a31c-674784d4ab28" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:38+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ddb3f2d62f67a498eafd6991ce7f0818f599225f", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:38+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1296", - "self_link": null, - "uid": "08d57eba-a437-4c60-af14-2188bd26e25d" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "eb7affe2826ad535fa8e75a22eb5e05a63eaae31", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1535", - "self_link": null, - "uid": "0d6c87b6-4541-42f1-a7f0-af232b077382" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:38+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "7cbeea8e6f6bbbaef0d9440a48967b9aa51d2f48", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:38+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1295", - "self_link": null, - "uid": "331ea22e-3a47-4171-a68e-a285f305be34" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:21+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "e14eae37a5a7926530e67b15ac94c0cedfd4fbe9", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:21+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1489", - "self_link": null, - "uid": "350752cb-7a5a-472e-a73d-7bf8008c0d61" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1133", - "self_link": null, - "uid": "875dfe38-9eb1-471c-8045-ccaf35b91889" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1135", - "self_link": null, - "uid": "e27c549a-0c2c-4c92-80c0-50b1c31c9a84" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1132", - "self_link": null, - "uid": "22445c64-f487-44c4-b5a6-1ffa54c9e819" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1136", - "self_link": null, - "uid": "74a0c5d6-69d9-4bbd-a3dc-b053c8061ce5" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1137", - "self_link": null, - "uid": "e8266d55-04f7-441d-b63c-98b2525ad977" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1N1oXDTM0MDEwNDE2NTI1N1owFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOdL\nM2D3LMSOlB26b5WIYwAK8W7bZhYmLqucOf5vVqkYqrcEfKRMTRd0uAj9X/0edJiu\nk6AIsyARCqV6lWlz9oLYcTScrsmGVMPBI7FdzIw4w8biT+N/hohcPEq05CrVqN/+\nztsBcocq++/U3d4c+HvpCh4wmtgPYtegKso1KmXUb9FMrrfWDF1O9+EUHOSU0j4H\n2y9BaO6cAiVp0BqVh/Z71VDvQJE3/8mOBO+M8gBgnXYkn66B8mAeVgt0BtVt1mJm\nHi2GdYUMmwuXHcTDV/QDUTZT1/Y+9TSYwLly5laouvm0XrcBTlf3spP3Zh2qfGae\nGc5YdAPTlfMhqouHdtMCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFNINUyi75t1UNV/2Nuqfz9PClfK+MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAAIoLYfKZ7xyUSDW7rnZ\nADbdr39mFeI3nvA/UQt0jfdjrEltTcyOXl8bQyF36q2hzfIYEhrir3tCgSajXXYY\n1FW53hs9DjRHoEjK6npIUa9FjBuTeruAoh6t7QkrQ4pIM9N7niNl4CA6GCXQ1PYB\nOGvZklfHDL3w/yZwdYGESCCrPuVpj5rFwV3erPTBqqtmTfu41QvvBkewJDMqHqPQ\n4yStbnw5G9YizFq3S7FIfKdw6VJmQZHBS8yYDEbF4Nmlj6gt6l7PVArPvlM971Uy\nEIAaUhFaUUq1x2vLATjUy7f6iuCoRpcMf0MvUCPMI6/T1A0odO5wbtu5PLMdrXSp\n1eg=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:54:00+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:00+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "702", - "self_link": null, - "uid": "bcf480b0-b090-4eb7-b01f-25abe24fc6f2" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:09+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "663cba3199bf424f50977209147437b843a54e27", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:19+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1480", - "self_link": null, - "uid": "74f94ed5-a138-4890-8aed-ee9fa0beb92b" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:58+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "65826a45c1786c1c773527b4ef50c023c9b55613", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:04+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1697", - "self_link": null, - "uid": "125a6e17-f6de-4b23-b2dd-9959a46f2d70" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "465f0d22679ab89b36f8feab013af77fc935f788", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:15+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1463", - "self_link": null, - "uid": "71317ce3-04c4-41e9-ba17-a7542df26ea5" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:48+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6e0208e1b7b684c8baf2c8030a5ff00acf16a535", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:55+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1659", - "self_link": null, - "uid": "78540a31-926a-4da3-ac00-e7473b0f34f7" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1143", - "self_link": null, - "uid": "4cd7bd4d-7349-4577-a148-c4299cef2a60" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.149.0", - "cluster_i_ps": [ - "10.96.149.0" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:24+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "bcb442f49bf5ddf6c197830299cf858b5b658d01" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:24+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1501", - "self_link": null, - "uid": "77ed15cb-ae9c-4a29-9b93-8e2caf31cdff" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.130.10", - "cluster_i_ps": [ - "10.96.130.10" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 30929, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 31171, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 30401, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-2-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:43+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "c9b88839b2a7296e1451af68d0fbce2916707c3d", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:47+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:09+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1439", - "self_link": null, - "uid": "77025e87-0f52-4817-a739-cf2d84d0ee27" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-77025e87-0f52-4817-a739-cf2d84d0ee27" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-2-worker2" - }, - "creation_timestamp": "2024-01-07T16:58:30+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "318ad626a8c9745326bbfe9db1e3b632c09bfd4b", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:33+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:57+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1665", - "self_link": null, - "uid": "d7478e55-9027-4215-b3b2-7ec870028356" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-d7478e55-9027-4215-b3b2-7ec870028356" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-2-worker3" - }, - "creation_timestamp": "2024-01-07T16:57:43+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "47a7908a48388d73969c6d43a49d3a44d48c8e7a", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:47+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:04+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1423", - "self_link": null, - "uid": "a7b7e75f-6c00-48b2-abb4-8623350be412" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-a7b7e75f-6c00-48b2-abb4-8623350be412" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-2-worker2" - }, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "159400ae7eada00ca32ab5a2cbf620caff37a086", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:47+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1628", - "self_link": null, - "uid": "47061119-4546-4aae-becf-b397f7498acf" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-47061119-4546-4aae-becf-b397f7498acf" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:36+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"62f62731-45fa-4d3c-8e3f-764c213bbd73\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:36+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:00+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - } - ], - "resource_version": "1621", - "self_link": null, - "uid": "d5ad8eba-96ae-494f-8e43-b4bfa5161b5a" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:58:46+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1138", - "self_link": null, - "uid": "e1ebdcea-f472-4b7e-b6a0-2716382599f5" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-wglr8": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1N1oXDTM0MDEwNDE2NTI1N1owFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOdL\nM2D3LMSOlB26b5WIYwAK8W7bZhYmLqucOf5vVqkYqrcEfKRMTRd0uAj9X/0edJiu\nk6AIsyARCqV6lWlz9oLYcTScrsmGVMPBI7FdzIw4w8biT+N/hohcPEq05CrVqN/+\nztsBcocq++/U3d4c+HvpCh4wmtgPYtegKso1KmXUb9FMrrfWDF1O9+EUHOSU0j4H\n2y9BaO6cAiVp0BqVh/Z71VDvQJE3/8mOBO+M8gBgnXYkn66B8mAeVgt0BtVt1mJm\nHi2GdYUMmwuXHcTDV/QDUTZT1/Y+9TSYwLly5laouvm0XrcBTlf3spP3Zh2qfGae\nGc5YdAPTlfMhqouHdtMCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFNINUyi75t1UNV/2Nuqfz9PClfK+MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAAIoLYfKZ7xyUSDW7rnZ\nADbdr39mFeI3nvA/UQt0jfdjrEltTcyOXl8bQyF36q2hzfIYEhrir3tCgSajXXYY\n1FW53hs9DjRHoEjK6npIUa9FjBuTeruAoh6t7QkrQ4pIM9N7niNl4CA6GCXQ1PYB\nOGvZklfHDL3w/yZwdYGESCCrPuVpj5rFwV3erPTBqqtmTfu41QvvBkewJDMqHqPQ\n4yStbnw5G9YizFq3S7FIfKdw6VJmQZHBS8yYDEbF4Nmlj6gt6l7PVArPvlM971Uy\nEIAaUhFaUUq1x2vLATjUy7f6iuCoRpcMf0MvUCPMI6/T1A0odO5wbtu5PLMdrXSp\n1eg=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjV2Mkh3c09iaHB5ejdwWGhLeDVBQmJ3TS1XZ2w1dFFZeElGclVXRGNycDgifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi13Z2xyOCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiYTExYjMxOGQtZWNjZC00N2JmLTkyZmYtMDUyYjAwOTVlM2ViIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.KT4rXfeEnCISNhMveqwShb6RZP54atA7nb-IlzuU4tMXcZHaSFmCn-jeuojZefwPci9fgVml81NdCSMPAKh1ngA7H70bxJb-FF-2JdAMYOIIy8eziZmFoEPSk7Dmjxodc8CzKL-HXSlIvPso6XDI6AIxCURsgYicqT3gsW_gNMlV1K5fkYgmz7FvOEbROygwSvSZN4bElJT1rGK1w-e-sRom0cMIeTbW1Qif2t--uVRu-_qOjkqCou0_h-3eSh69XWvvAz7UCMuaDQACudp7cXWfeYt6MeXcvXSx-RKKD_qvSn5XWynQ4sTEirDpIHewSguZKqEopXnvidiGGSTwjQ" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "a11b318d-eccd-47bf-92ff-052b0095e3eb" - }, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "clickhouse-operator-token-wglr8", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1130", - "self_link": null, - "uid": "778e6b85-f077-47bd-a70a-d6996bad6e51" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-vg2rf": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1N1oXDTM0MDEwNDE2NTI1N1owFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOdL\nM2D3LMSOlB26b5WIYwAK8W7bZhYmLqucOf5vVqkYqrcEfKRMTRd0uAj9X/0edJiu\nk6AIsyARCqV6lWlz9oLYcTScrsmGVMPBI7FdzIw4w8biT+N/hohcPEq05CrVqN/+\nztsBcocq++/U3d4c+HvpCh4wmtgPYtegKso1KmXUb9FMrrfWDF1O9+EUHOSU0j4H\n2y9BaO6cAiVp0BqVh/Z71VDvQJE3/8mOBO+M8gBgnXYkn66B8mAeVgt0BtVt1mJm\nHi2GdYUMmwuXHcTDV/QDUTZT1/Y+9TSYwLly5laouvm0XrcBTlf3spP3Zh2qfGae\nGc5YdAPTlfMhqouHdtMCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFNINUyi75t1UNV/2Nuqfz9PClfK+MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAAIoLYfKZ7xyUSDW7rnZ\nADbdr39mFeI3nvA/UQt0jfdjrEltTcyOXl8bQyF36q2hzfIYEhrir3tCgSajXXYY\n1FW53hs9DjRHoEjK6npIUa9FjBuTeruAoh6t7QkrQ4pIM9N7niNl4CA6GCXQ1PYB\nOGvZklfHDL3w/yZwdYGESCCrPuVpj5rFwV3erPTBqqtmTfu41QvvBkewJDMqHqPQ\n4yStbnw5G9YizFq3S7FIfKdw6VJmQZHBS8yYDEbF4Nmlj6gt6l7PVArPvlM971Uy\nEIAaUhFaUUq1x2vLATjUy7f6iuCoRpcMf0MvUCPMI6/T1A0odO5wbtu5PLMdrXSp\n1eg=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjV2Mkh3c09iaHB5ejdwWGhLeDVBQmJ3TS1XZ2w1dFFZeElGclVXRGNycDgifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi12ZzJyZiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiZDM5NzFhNDAtZWRmZi00NjU5LWEyZDUtNTMxMDE3Nzg1Yjc4Iiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.Oos3CBjSlA2-wSyAJJN6XJpZjc7bvy0dzEagmyFVmMsEGklAxXo1KUg0waYIqoccQldHJk4k5fTa696lxsS4lbAzSNkS7wLQ554tUmbycSbm7J_MnugEI_JcHYYSTRg-G66k5jCRxenUH0KlsVoqIGMZTO6HddNGQ5AUE446sH8TDOL_01zCPu7R_QDjZPHVjDkQWqWLdAFL_aub3DB7qtnefp2aiKYQcoc4AURjAfMLYRxGvzSqyjAm3TT6E1HL36cL-VorgI0fECPGr9vNX01wEuyIkIdZb2SL35xNyWVHJkMn-U1zdCxtJwGwBPPf-zZP8lxbDv-UkS7k3kSTKg" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "d3971a40-edff-4659-a2d5-531017785b78" - }, - "creation_timestamp": "2024-01-07T16:54:00+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:00+00:00" - } - ], - "name": "default-token-vg2rf", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "704", - "self_link": null, - "uid": "6fa3d04b-80fd-4c47-b8fb-81b020b74159" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:09+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "663cba3199bf424f50977209147437b843a54e27", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:19+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1482", - "self_link": null, - "uid": "096504d9-6e57-43fe-8909-78e482c803f3" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.1.7", - "node_name": "acto-0-cluster-2-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1479", - "uid": "9d18dcbd-b26e-4a14-b2d9-3a84e51436fb" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:58+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "65826a45c1786c1c773527b4ef50c023c9b55613", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:04+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1698", - "self_link": null, - "uid": "56dc4ea0-d6f8-4bf8-8a9b-787cf9b29334" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.1.11", - "node_name": "acto-0-cluster-2-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1694", - "uid": "aab9e95c-0d73-466f-9e17-7fdb55aaf4df" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "465f0d22679ab89b36f8feab013af77fc935f788", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:15+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1464", - "self_link": null, - "uid": "4d9c041b-e492-4ed6-8050-ff1ae48c14bf" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-2-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1462", - "uid": "c8f22546-406c-41a9-bcf4-c5f593a9e731" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:48+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6e0208e1b7b684c8baf2c8030a5ff00acf16a535", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:55+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1660", - "self_link": null, - "uid": "62de732c-0a8a-497f-abc0-9a51a9eb8343" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-2-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1656", - "uid": "63542b26-757e-48fb-be20-48d85ea2827a" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1218", - "self_link": null, - "uid": "e520f1ff-36e8-4ec7-8584-8b9ed974a167" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.5", - "node_name": "acto-0-cluster-2-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-hkfvr", - "namespace": "acto-clickhouse", - "resource_version": "1209", - "uid": "f75da726-834d-47a0-9012-22e685157a7a" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:58:46Z" - }, - "creation_timestamp": "2024-01-07T16:58:24+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "bcb442f49bf5ddf6c197830299cf858b5b658d01" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:24+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1695", - "self_link": null, - "uid": "2778525e-21c0-4356-8eda-f4a651df8c5e" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-2-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1656", - "uid": "63542b26-757e-48fb-be20-48d85ea2827a" - } - }, - { - "hostname": null, - "ip": "10.244.1.11", - "node_name": "acto-0-cluster-2-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1694", - "uid": "aab9e95c-0d73-466f-9e17-7fdb55aaf4df" - } - }, - { - "hostname": null, - "ip": "10.244.1.7", - "node_name": "acto-0-cluster-2-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1479", - "uid": "9d18dcbd-b26e-4a14-b2d9-3a84e51436fb" - } - }, - { - "hostname": null, - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-2-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1462", - "uid": "c8f22546-406c-41a9-bcf4-c5f593a9e731" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-wglr8\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:59+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1131", - "self_link": null, - "uid": "a11b318d-eccd-47bf-92ff-052b0095e3eb" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-wglr8", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:54:00+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "705", - "self_link": null, - "uid": "d3971a40-edff-4659-a2d5-531017785b78" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-vg2rf", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: b4cd1f29-e43c-4734-93d5-64df63316307", - "actions": [ - "2024-01-07T16:59:16.948013389Z reconcile completed successfully, task id: b4cd1f29-e43c-4734-93d5-64df63316307", - "2024-01-07T16:57:32.655790275Z reconcile started, task id: b4cd1f29-e43c-4734-93d5-64df63316307" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.1.5", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:32Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1728", - "uid": "62f62731-45fa-4d3c-8e3f-764c213bbd73" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.1.5" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.1.7", - "10.244.1.11", - "10.244.3.5", - "10.244.1.10" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "7ca37ab5-6de3-485c-a6c9-4d677a03c4f3", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.1.7", - "10.244.1.11", - "10.244.3.5", - "10.244.1.10" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "7ca37ab5-6de3-485c-a6c9-4d677a03c4f3", - "taskIDsCompleted": [ - "7ca37ab5-6de3-485c-a6c9-4d677a03c4f3" - ], - "taskIDsStarted": [ - "b4cd1f29-e43c-4734-93d5-64df63316307" - ] - } -} \ No newline at end of file diff --git a/clickhouse-result/trial-03-0000/mutated-000.yaml b/clickhouse-result/trial-03-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-03-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-03-0000/system-state-000.json b/clickhouse-result/trial-03-0000/system-state-000.json deleted file mode 100644 index 003211b30f..0000000000 --- a/clickhouse-result/trial-03-0000/system-state-000.json +++ /dev/null @@ -1,11661 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ad7a4d91-f403-4639-be71-3bb698218eee\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:03+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:04+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:19+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "ad7a4d91-f403-4639-be71-3bb698218eee" - } - ], - "resource_version": "1485", - "self_link": null, - "uid": "d6222caa-fe15-4981-809d-26e869e0a0a5" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-t9kpf", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-3-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-t9kpf", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:07+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:19+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:19+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:07+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://7df60bce0d9a8be8fd8ee6093f52690632c9e154340184b786ea4d89917d3bd3", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:08+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.24", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.5", - "pod_i_ps": [ - { - "ip": "10.244.3.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:07+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"4a0f3536-afab-4047-b567-29bcf324d1b0\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:49+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:50+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.7\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:06+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "4a0f3536-afab-4047-b567-29bcf324d1b0" - } - ], - "resource_version": "1685", - "self_link": null, - "uid": "c79381f2-3b2b-4fd6-aa13-9d57c7471e5e" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-jr47h", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-3-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-jr47h", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:59:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:59:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://8c5dd37e797344668932825b5618e97f32e2018e651b838aeef70567dc4e9f34", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:55+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.26", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.7", - "pod_i_ps": [ - { - "ip": "10.244.1.7" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:54+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"4630156e-9076-4467-91ea-1c885fa49da6\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:03+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:04+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.6\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:20+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "4630156e-9076-4467-91ea-1c885fa49da6" - } - ], - "resource_version": "1502", - "self_link": null, - "uid": "78a0f55b-d350-48ca-b482-159149e35b4b" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-59srb", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-3-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-59srb", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:20+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:20+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://3f0d3d92c37fddcb00d7603f916075e677e760b31af8dd850088311424b5458a", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:09+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.23", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.6", - "pod_i_ps": [ - { - "ip": "10.244.2.6" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:08+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:50+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:50+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"b9671d89-5f4e-4eb7-9fea-d9763797aeb0\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:50+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.8\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:07+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "b9671d89-5f4e-4eb7-9fea-d9763797aeb0" - } - ], - "resource_version": "1714", - "self_link": null, - "uid": "20b14a2a-89eb-4a5f-8e3f-e401c6e9cef9" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-tsxcn", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-3-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-tsxcn", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:55+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:59:07+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:59:07+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:55+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://912adc9a5a86a0692f7e402295ddbc61406b2a28a8a15e3050fc852fa1414cf5", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:56+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.26", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.8", - "pod_i_ps": [ - { - "ip": "10.244.1.8" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:55+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:57:25+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"24615983-aab3-4456-80b6-11606a5b24b3\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:25+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:25+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:26+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.4\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:26+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-2bjsm", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "24615983-aab3-4456-80b6-11606a5b24b3" - } - ], - "resource_version": "1230", - "self_link": null, - "uid": "3d067aeb-fb63-4390-b19d-ce0bfbb85f72" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-z5h65", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-z5h65", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-3-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-z5h65", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:25+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:26+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:26+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:25+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://849fa5c1a8f99815671fbd1a20f58562f82fcb11925799fbe917422defdc66f7", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:25+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://62f9d2cd53cf62e120749ec482bba70c94a53d341994b5d92ded42222a8579b8", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:26+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.26", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.4", - "pod_i_ps": [ - { - "ip": "10.244.1.4" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:25+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "df2a7bb39996c2760c0deac9b133ef3c800966ed", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:03+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:19+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1431", - "self_link": null, - "uid": "ad7a4d91-f403-4639-be71-3bb698218eee" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "1df9d4ac9302d60ee32c3086d620f1ec2637f860", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:49+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:59:06+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1650", - "self_link": null, - "uid": "4a0f3536-afab-4047-b567-29bcf324d1b0" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "75cb5888c752ce4a8c953aa9e0a2278426c37e9a", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:03+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:20+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1436", - "self_link": null, - "uid": "4630156e-9076-4467-91ea-1c885fa49da6" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:50+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "80c72e99ec273b284adec1d31acac67fb35f0939", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:50+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:59:07+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1653", - "self_link": null, - "uid": "b9671d89-5f4e-4eb7-9fea-d9763797aeb0" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:20+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:25+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:conditions": { - "k:{\"type\":\"Available\"}": { - "f:lastTransitionTime": {}, - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {}, - "f:status": {} - } - }, - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:25+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:26+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1245", - "self_link": null, - "uid": "b2339d18-71f6-4f76-a039-2f5996435867" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:57:21+00:00", - "last_update_time": "2024-01-07T16:57:21+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:57:19+00:00", - "last_update_time": "2024-01-07T16:57:26+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:54+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "90a6afb3a70a5996860714af0d0279e4653550d8" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:54+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1705", - "self_link": null, - "uid": "441743b4-a148-4442-be34-a72a944b43f0" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.1.4\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.3.5\n 10.244.1.7\n 10.244.2.6\n 10.244.1.8\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:55+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "14ecbe44aa4b50c10b2939ffdeb0a3eb6cf8f588" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:55+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1700", - "self_link": null, - "uid": "29cd8505-f057-4925-adf0-fabe18e09f1f" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:58+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "3319fd6a7dcfd0fa33bcad41bcc3afb03bce1a2a", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:58+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1317", - "self_link": null, - "uid": "71854055-65cb-49be-97bf-74d426db02a6" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a133e63b702f637908db3e6c9f5fa02972a1a4fb", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:44+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1531", - "self_link": null, - "uid": "c2432757-e17f-4a88-82bd-cad88ae1fa43" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "391d9d68512668beee99fbe863315f93b1abc050", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:59+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1318", - "self_link": null, - "uid": "29d7df92-7872-451b-bb52-36d07358136c" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:46+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "c799e4bbe387be3908bcb5bcabe4f2897b86cd9e", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:46+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1536", - "self_link": null, - "uid": "1b946962-ee58-41e2-8d66-3953299364a7" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1157", - "self_link": null, - "uid": "a17c0f83-e83b-40b7-9f23-89d31a6d429c" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1158", - "self_link": null, - "uid": "2b1dbcfe-eb84-47a6-ada2-35e6287b8fee" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1155", - "self_link": null, - "uid": "1746abc1-3b2b-417f-a3ae-e0cc7a36401e" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1160", - "self_link": null, - "uid": "5c9d8e92-2854-4c36-83bc-daba6673e060" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1161", - "self_link": null, - "uid": "c445ad0b-6fe8-4c0f-b921-6179fe45a98c" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NloXDTM0MDEwNDE2NTI1NlowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMi2\n57xdv6K3c3l8k8S4ME3eWqSxertr44u5CHXZny5YvAvPCZaSNDirT/UGQj1XXobp\nYVjgQesm8MHfoXOwBnd0vZN8VnvnhKal6diz9jBovDeSG1eRh3SqH3X00ZiVNUjA\ncSxlVdnOYnhgWodYuSTgyhJ5klkQwEAA6JB2XrHURVRitfspyPl8FyHa0C+vNK3T\ns9CdzV1XRc2ASF/dm9cFAY7Q47ZTXvrmUXd4Iv58WXcJsTghLehHt1lw2Pn9czh0\niphj1+iuOXNgxCrqaBSECT60U1p52sPREN5ftxRWio83Q65laTzI+ZW4UY21xjSn\n77OOeveGBKBq4KB0XOcCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFMIV2iPiSRknDbLGSBv+8Ox4zY5rMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAJmLlSnHDRoJCFY+S+ES\ntS7DrwfO5AV1qWYZgVNsusy+vhZSE10s3o7Ko8dIsWC/i7ZkD/vSYyVPcHSmhs+Q\n+hFDyPzGUlm+XQ0S1BrsPM2q7NoVvBXG3RPFvZG2eW6IykvkBbH31lnmiepyEhve\nRHXv/uYk+kE8Cs+CP5l25497DEqqVeLPg65sDgrDM/zZmyN6pdgYZ6mAC+NAMveW\n0hmYcqiJUtdCP06My5ul06ioP9eOrMSEJDa7USclZILfNpsxX098HL2AjC6w1LHi\nYKzgVxNyVDB+waXsu3yV3NuK9Kz2gigf+48a6az7+CMZfY48KclNXNvx86RMBYZK\nfDc=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:54:00+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:00+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "697", - "self_link": null, - "uid": "5f323172-39e9-4b27-be92-152671fa21f2" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "34a05cf6b523c23eafc8995c746094be5e2672ba", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:35+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1486", - "self_link": null, - "uid": "44cf1b7f-524c-4a2d-93b4-a2867ae804e9" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:59:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "56bf8d996de662c7604130b3bf3cbebf3effc285", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:16+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1691", - "self_link": null, - "uid": "94806cdd-cd3b-46fd-ac9b-35eaa733861a" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:30+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "71d83255be6e0666ca721b699b3cdfdf1fde2b64", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:39+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1503", - "self_link": null, - "uid": "49565436-042e-42f2-806b-e56b30a32c50" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:59:16+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "20b5f60a6b00241ad8ecc854a1fce551b0acf78d", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:24+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1720", - "self_link": null, - "uid": "821cfaac-772d-4b2f-8cb5-9d60eff2a2eb" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1167", - "self_link": null, - "uid": "998a2404-4cd4-41d0-9157-8dbaa1eef760" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.26.203", - "cluster_i_ps": [ - "10.96.26.203" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "5c6d613f74cf7d89ecfbb6cc844beb5e5ff43750" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:40+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1513", - "self_link": null, - "uid": "da10f2b5-3ee9-44f6-9c40-0c0153c26059" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.40.60", - "cluster_i_ps": [ - "10.96.40.60" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 30932, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 31885, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 32532, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-3-worker2" - }, - "creation_timestamp": "2024-01-07T16:58:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "890831bd1496027409dd6f4285254cd6e3c8dd1c", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:03+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:25+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1447", - "self_link": null, - "uid": "0f3683a5-fc86-40df-8462-e18db785555c" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-0f3683a5-fc86-40df-8462-e18db785555c" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-3-worker" - }, - "creation_timestamp": "2024-01-07T16:58:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0b31aaada269238b85fffaa84a1695405b12ff81", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:49+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:53+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:10+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1663", - "self_link": null, - "uid": "187bff09-8b84-4a28-a007-d55d99caf640" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-187bff09-8b84-4a28-a007-d55d99caf640" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-3-worker3" - }, - "creation_timestamp": "2024-01-07T16:58:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "3111ca67b635b442c7d0671e32cca8e73068b1c4", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:03+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:07+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:29+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1462", - "self_link": null, - "uid": "55046a72-1d93-4d00-aafa-1af6010ea7b1" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-55046a72-1d93-4d00-aafa-1af6010ea7b1" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-3-worker" - }, - "creation_timestamp": "2024-01-07T16:58:50+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "090c230e15105914f3716dd5fb1a4185ac20d8dc", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:50+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:54+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:15+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1682", - "self_link": null, - "uid": "25fc7580-ca98-45c9-a98b-ab1225753685" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-25fc7580-ca98-45c9-a98b-ab1225753685" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3de26d9f-c2f0-4f46-96f4-ca5f2d66006c\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:56+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:20+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - } - ], - "resource_version": "1652", - "self_link": null, - "uid": "f7dc1b61-9c79-4d06-84c9-d5c97f6c7a4c" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:59:07+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1162", - "self_link": null, - "uid": "87f9f645-ae2b-4422-bd0e-fd641ca32606" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-jlhwp": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NloXDTM0MDEwNDE2NTI1NlowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMi2\n57xdv6K3c3l8k8S4ME3eWqSxertr44u5CHXZny5YvAvPCZaSNDirT/UGQj1XXobp\nYVjgQesm8MHfoXOwBnd0vZN8VnvnhKal6diz9jBovDeSG1eRh3SqH3X00ZiVNUjA\ncSxlVdnOYnhgWodYuSTgyhJ5klkQwEAA6JB2XrHURVRitfspyPl8FyHa0C+vNK3T\ns9CdzV1XRc2ASF/dm9cFAY7Q47ZTXvrmUXd4Iv58WXcJsTghLehHt1lw2Pn9czh0\niphj1+iuOXNgxCrqaBSECT60U1p52sPREN5ftxRWio83Q65laTzI+ZW4UY21xjSn\n77OOeveGBKBq4KB0XOcCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFMIV2iPiSRknDbLGSBv+8Ox4zY5rMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAJmLlSnHDRoJCFY+S+ES\ntS7DrwfO5AV1qWYZgVNsusy+vhZSE10s3o7Ko8dIsWC/i7ZkD/vSYyVPcHSmhs+Q\n+hFDyPzGUlm+XQ0S1BrsPM2q7NoVvBXG3RPFvZG2eW6IykvkBbH31lnmiepyEhve\nRHXv/uYk+kE8Cs+CP5l25497DEqqVeLPg65sDgrDM/zZmyN6pdgYZ6mAC+NAMveW\n0hmYcqiJUtdCP06My5ul06ioP9eOrMSEJDa7USclZILfNpsxX098HL2AjC6w1LHi\nYKzgVxNyVDB+waXsu3yV3NuK9Kz2gigf+48a6az7+CMZfY48KclNXNvx86RMBYZK\nfDc=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjJ0MVozZWphQ2dKMnVrUlQwbmR0TU5fYkpxREowTkJwNWItNUhzNmI5UE0ifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi1qbGh3cCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiZDdkNjYwMTMtYjg2OS00YWQwLTkyMTktYTUzN2NhMTU5ODhmIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.cO7Pc3gA8AJh1OzPZ1bn9jVibPXqnT09s0fHUNHZy-wub_TFrxZHO0iC6ocBh4lQXqaWQvBcJ3bjfTFqWkbJh3YJP_hcv9Y-tBG0yBP9hUzRe7cmnxeQXPF_v6pqdkzfyuBfQPT1ZQ7Kt2F8h9cGIHzJvsNVn5KZoxf_3pb0hXdRRHh09xQr7sdNGpfZKfRMBPJMl9xhBMf190Mn11V5XTA6un6YbhLytgIJ2ph6kGehUWFb9ICzjrT8FHH0k7lCVb5gZw7SQNm_s-Q8Pc_Q6fK0df_svaFSMF_fD-qI9Nt4_OxikIgY_OJIt1TaYQZd1tV1qYwvrcndj8tpwsHHDA" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "d7d66013-b869-4ad0-9219-a537ca15988f" - }, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "clickhouse-operator-token-jlhwp", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1152", - "self_link": null, - "uid": "39d5df6b-10f3-4f74-b298-bd0299b956cf" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-wc9b5": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NloXDTM0MDEwNDE2NTI1NlowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMi2\n57xdv6K3c3l8k8S4ME3eWqSxertr44u5CHXZny5YvAvPCZaSNDirT/UGQj1XXobp\nYVjgQesm8MHfoXOwBnd0vZN8VnvnhKal6diz9jBovDeSG1eRh3SqH3X00ZiVNUjA\ncSxlVdnOYnhgWodYuSTgyhJ5klkQwEAA6JB2XrHURVRitfspyPl8FyHa0C+vNK3T\ns9CdzV1XRc2ASF/dm9cFAY7Q47ZTXvrmUXd4Iv58WXcJsTghLehHt1lw2Pn9czh0\niphj1+iuOXNgxCrqaBSECT60U1p52sPREN5ftxRWio83Q65laTzI+ZW4UY21xjSn\n77OOeveGBKBq4KB0XOcCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFMIV2iPiSRknDbLGSBv+8Ox4zY5rMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAJmLlSnHDRoJCFY+S+ES\ntS7DrwfO5AV1qWYZgVNsusy+vhZSE10s3o7Ko8dIsWC/i7ZkD/vSYyVPcHSmhs+Q\n+hFDyPzGUlm+XQ0S1BrsPM2q7NoVvBXG3RPFvZG2eW6IykvkBbH31lnmiepyEhve\nRHXv/uYk+kE8Cs+CP5l25497DEqqVeLPg65sDgrDM/zZmyN6pdgYZ6mAC+NAMveW\n0hmYcqiJUtdCP06My5ul06ioP9eOrMSEJDa7USclZILfNpsxX098HL2AjC6w1LHi\nYKzgVxNyVDB+waXsu3yV3NuK9Kz2gigf+48a6az7+CMZfY48KclNXNvx86RMBYZK\nfDc=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjJ0MVozZWphQ2dKMnVrUlQwbmR0TU5fYkpxREowTkJwNWItNUhzNmI5UE0ifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi13YzliNSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiM2M3YzIwMDItNWIzMy00OTIxLTk3NjktN2E4YjhhMGJkYzVmIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.HcdWUbuijUgxNd1Il6DilSh9xzLPQjtsrC9BjJvC-4c3dtIlMUimHsFzucIABoENzmyqkgbPeOELkNi7shNJrtycbiy_1NExxuKwnJuPSnDNasLhcT-JkoacclQrZ6etTTfoAymOs4OGJYsSUWifMzE3vVnKEBS0D9l1W4aw9smAZENcW5uvhks-qwJYSX4RepAa6CNB1TsOUCUHks351BwNnu7IHtIgbcBFWuBDxNrdBkGiI7HjK1b7Q8DQCUlk4U-PlAQnUNWxBSE1jPteVqB9ZgCqRGzLWzof2fK9SOgpjOHvl0etWxpNCpznK_ZnE6eHZ9iDciGpivYfSQsbXg" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "3c7c2002-5b33-4921-9769-7a8b8a0bdc5f" - }, - "creation_timestamp": "2024-01-07T16:54:00+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:00+00:00" - } - ], - "name": "default-token-wc9b5", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "699", - "self_link": null, - "uid": "f21d4aed-5d8e-424e-849f-d44e11f8fe57" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "34a05cf6b523c23eafc8995c746094be5e2672ba", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:35+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1487", - "self_link": null, - "uid": "dc31df67-c889-466f-a08e-05664cb60bd9" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-3-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1485", - "uid": "d6222caa-fe15-4981-809d-26e869e0a0a5" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:59:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "56bf8d996de662c7604130b3bf3cbebf3effc285", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:16+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1692", - "self_link": null, - "uid": "de3083d1-96c5-40c7-9cb3-816ae0aa1568" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.1.7", - "node_name": "acto-0-cluster-3-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1685", - "uid": "c79381f2-3b2b-4fd6-aa13-9d57c7471e5e" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:30+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "71d83255be6e0666ca721b699b3cdfdf1fde2b64", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:39+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1504", - "self_link": null, - "uid": "94ce5381-a47b-400d-a15f-416a3e16baa1" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.2.6", - "node_name": "acto-0-cluster-3-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1502", - "uid": "78a0f55b-d350-48ca-b482-159149e35b4b" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:59:16+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "20b5f60a6b00241ad8ecc854a1fce551b0acf78d", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:24+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1721", - "self_link": null, - "uid": "625ba958-b994-41ae-ba26-6be2da89e28c" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-3-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1714", - "uid": "20b14a2a-89eb-4a5f-8e3f-e401c6e9cef9" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:26+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1241", - "self_link": null, - "uid": "05f39788-61f4-49bc-8a24-32e849a0bf61" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.4", - "node_name": "acto-0-cluster-3-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-2bjsm", - "namespace": "acto-clickhouse", - "resource_version": "1230", - "uid": "3d067aeb-fb63-4390-b19d-ce0bfbb85f72" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:59:07Z" - }, - "creation_timestamp": "2024-01-07T16:58:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "5c6d613f74cf7d89ecfbb6cc844beb5e5ff43750" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:40+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1716", - "self_link": null, - "uid": "6d833dc3-1343-429b-acc9-10bf41212405" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.7", - "node_name": "acto-0-cluster-3-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1685", - "uid": "c79381f2-3b2b-4fd6-aa13-9d57c7471e5e" - } - }, - { - "hostname": null, - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-3-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1714", - "uid": "20b14a2a-89eb-4a5f-8e3f-e401c6e9cef9" - } - }, - { - "hostname": null, - "ip": "10.244.2.6", - "node_name": "acto-0-cluster-3-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1502", - "uid": "78a0f55b-d350-48ca-b482-159149e35b4b" - } - }, - { - "hostname": null, - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-3-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1485", - "uid": "d6222caa-fe15-4981-809d-26e869e0a0a5" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:19+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-jlhwp\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:19+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1153", - "self_link": null, - "uid": "d7d66013-b869-4ad0-9219-a537ca15988f" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-jlhwp", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:54:00+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "700", - "self_link": null, - "uid": "3c7c2002-5b33-4921-9769-7a8b8a0bdc5f" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-wc9b5", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: 4b3631bd-d92d-476d-8ce4-6b211b19800a", - "actions": [ - "2024-01-07T16:59:37.362462171Z reconcile completed successfully, task id: 4b3631bd-d92d-476d-8ce4-6b211b19800a", - "2024-01-07T16:57:53.033369611Z reconcile started, task id: 4b3631bd-d92d-476d-8ce4-6b211b19800a" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.1.4", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:52Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1749", - "uid": "3de26d9f-c2f0-4f46-96f4-ca5f2d66006c" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.1.4" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.3.5", - "10.244.1.7", - "10.244.2.6", - "10.244.1.8" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "fca04b41-b901-41e5-85dc-d200e76a1d39", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.3.5", - "10.244.1.7", - "10.244.2.6", - "10.244.1.8" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "fca04b41-b901-41e5-85dc-d200e76a1d39", - "taskIDsCompleted": [ - "fca04b41-b901-41e5-85dc-d200e76a1d39" - ], - "taskIDsStarted": [ - "4b3631bd-d92d-476d-8ce4-6b211b19800a" - ] - } -} \ No newline at end of file diff --git a/clickhouse-result/trial-04-0000/mutated-000.yaml b/clickhouse-result/trial-04-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-04-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-04-0000/system-state-000.json b/clickhouse-result/trial-04-0000/system-state-000.json deleted file mode 100644 index 908b63dbc0..0000000000 --- a/clickhouse-result/trial-04-0000/system-state-000.json +++ /dev/null @@ -1,11662 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:11+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3195094d-e53b-4528-8ea6-7a14a171989b\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:11+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:28+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "3195094d-e53b-4528-8ea6-7a14a171989b" - } - ], - "resource_version": "1460", - "self_link": null, - "uid": "b7912c4e-1bc7-4f68-945e-55faf52cd1a7" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-79659", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-4-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-79659", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:16+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:28+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:28+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:16+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://dcfe98d6f085d05cb011908ce6a6ebc31a56bf025df68b78c9ca5a39f94b8b91", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:16+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.4", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.5", - "pod_i_ps": [ - { - "ip": "10.244.2.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:16+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:58+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:58+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"cb875f44-c61a-494d-960b-b28e927f58f7\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:58+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.7\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:15+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "cb875f44-c61a-494d-960b-b28e927f58f7" - } - ], - "resource_version": "1673", - "self_link": null, - "uid": "8f727eac-bd51-421f-923f-4d6ed35b96a1" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-rf2nb", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-4-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-rf2nb", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:03+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:15+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:15+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:03+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://666e4885de545be14e4a776649127b9e7577890a7d066582d3b093abc544e27f", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:04+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.4", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.7", - "pod_i_ps": [ - { - "ip": "10.244.2.7" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:03+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:10+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a8794014-0e8c-4a7b-8b42-b79f813ab866\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:10+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:11+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.6\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:27+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "a8794014-0e8c-4a7b-8b42-b79f813ab866" - } - ], - "resource_version": "1442", - "self_link": null, - "uid": "bb53ea98-8d77-4c6e-952b-6662b99a2889" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-2lkwm", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-4-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-2lkwm", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:15+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:27+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:27+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:15+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://b8b935f4d2d674a417daeeecfadf4d5b217956bba924020fe4332c644ec45414", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:16+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.13", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.6", - "pod_i_ps": [ - { - "ip": "10.244.1.6" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:15+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:53+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"9d9e5801-9d17-4300-b96f-027cc437ab2e\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:53+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:54+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.8\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:11+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "9d9e5801-9d17-4300-b96f-027cc437ab2e" - } - ], - "resource_version": "1637", - "self_link": null, - "uid": "0c16a5cd-19c9-4485-a587-e8c03f4c3dd3" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-xs846", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-4-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-xs846", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:58+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:10+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:10+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:58+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://9e78c4928e3b994bdb175bc367a77d55152fa3c9bf1fd4308a304311154e7ef6", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:59+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.13", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.8", - "pod_i_ps": [ - { - "ip": "10.244.1.8" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:58+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:56:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"9e44f919-e55e-4b5b-959f-3048f70ac01f\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:32+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:32+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:33+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.4\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:56:33+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-nt6ww", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "9e44f919-e55e-4b5b-959f-3048f70ac01f" - } - ], - "resource_version": "1193", - "self_link": null, - "uid": "8c33cd25-4fc5-4f62-b839-047689ae925e" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-4c6g9", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-4c6g9", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-4-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-4c6g9", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:32+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:33+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:33+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:56:32+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://ada0fe7a4582385d9817b0e8069778ed8beb28534c90dca7c9411a24358e1812", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:56:33+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://a185f4691fd6829cafdeeef21efb36637c9b52f4dd103bea1b3bdb0263c43bfa", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:56:33+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.3", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.4", - "pod_i_ps": [ - { - "ip": "10.244.3.4" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:56:32+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "49c298acab66de20b5378858011589c9837d7d84", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:11+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:28+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1394", - "self_link": null, - "uid": "3195094d-e53b-4528-8ea6-7a14a171989b" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:58+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "e387b8a38be27869c0dcde4bb41298db37923115", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:58+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:15+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1609", - "self_link": null, - "uid": "cb875f44-c61a-494d-960b-b28e927f58f7" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:10+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a5f8c22369cbb00d0d11e1705b647ea77df128d2", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:10+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:27+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1391", - "self_link": null, - "uid": "a8794014-0e8c-4a7b-8b42-b79f813ab866" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:53+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "5cad0c41ab865d0f50058197a55ef7a369bcc838", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:53+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:11+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1597", - "self_link": null, - "uid": "9d9e5801-9d17-4300-b96f-027cc437ab2e" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:28+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:32+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:conditions": { - "k:{\"type\":\"Available\"}": { - "f:lastTransitionTime": {}, - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {}, - "f:status": {} - } - }, - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:32+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:56:33+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1208", - "self_link": null, - "uid": "c945d744-3ba6-4b66-904b-7b24c2d2c167" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:56:28+00:00", - "last_update_time": "2024-01-07T16:56:28+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:56:27+00:00", - "last_update_time": "2024-01-07T16:56:33+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:02+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "737189656d1bb4bc891636fe86a99202e8483277" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:02+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1665", - "self_link": null, - "uid": "de64e04f-30a1-4525-994b-9f0e4e9af842" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.3.4\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.2.5\n 10.244.2.7\n 10.244.1.6\n 10.244.1.8\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "56d1ffcd94d20e009d3299b17c05f70495123c3c" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:03+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1653", - "self_link": null, - "uid": "50e3e467-6511-4664-ad75-6ce958cea353" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:06+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "4077732db1396f37d5b12fc73726401aac6dc8d3", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1280", - "self_link": null, - "uid": "35a2c2e0-2268-47e5-8abc-6c93f4d0691a" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:55+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "855b28ddbed9169af5b4708f2a1cac78bc2d6853", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:55+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1519", - "self_link": null, - "uid": "1b3ca380-a50e-40f4-b85e-76b07c704e59" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:06+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "5d979f0e8cd50f043e872d66f750f01a649ec524", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1279", - "self_link": null, - "uid": "38bc3973-ccf4-4cdd-90d6-2df6b024c6b8" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b747f6a56a4748119776d170072bed8e92c88310", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1473", - "self_link": null, - "uid": "f772878a-2b1a-4a20-89d8-084983b8b49e" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1120", - "self_link": null, - "uid": "8ca0132a-4246-4a1e-add0-16aff3d256e1" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1121", - "self_link": null, - "uid": "07a291df-96bb-4373-b63c-71cb667447ab" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1119", - "self_link": null, - "uid": "105ea13c-4821-46ce-9c94-ffd34f398d72" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1122", - "self_link": null, - "uid": "422492bf-c90b-48f3-8fe9-bd9dd4e3e2de" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1123", - "self_link": null, - "uid": "493810f1-0084-4e06-ae15-175537cecce1" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTIzOVoXDTM0MDEwNDE2NTIzOVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOcs\nLoK0Z2252UdXtBGLvbPqaHYlgC4J2rgvyyJnDmOdqocUdl8A3zUxtBMF/zah8h5c\nToHZhQAYfvasG+lhKVc9VvxIz8ny6ji+rTkMTTjb7foG+DiQ9uXbLCeaX/1MXVYB\nFxJ0UI7bF++om2dnRcEsCdm3A8POTlRPsQNguq16LzcRrwcCT/gzlDVe7Su/e0dl\nQamS7UdjnSBc0BRiFIedkCIjwL1mEFtK9+NwhJKW4TCclyg6mvy3HXJ5degsIh7J\nDrH+gucmWhq0Q/pP0g46OJx2+dclTOknal50+WUsfF3Lt5YBJxWlVTGv8u9/jTZo\nSIDIqDjYezcc7I6w0AsCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFL9frbQYB40rcOKk1Rv/dKUWbq3gMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAA1Ld/UMIx8GlGtGJD2h\n/VVZfbP2oGe5rzq7FTJ++ZowPq7/4ncxEcjTQkmdkFj8OljchPRO3te3XGnQ18ec\n13ffBCPj+ziqHfp3VPOV38unIt9amFnfatlkfmGtX2UoztLO+t23AtV8uStKwS3c\nJuDEsvCcJL7wt85tAPGnNi8NqnPxsWG8VivsQiWFsvNmjLALHypSqHWMkrNeJ9ft\n7uNLayWIG0Ce6+wWfCgjECYnGG8UmrwN4jmf4dl3usKYQ6pnl7Bu+wCyw8ooQT8U\n+dsXzgSiu1q+WzOg3vS6mbEWXx9SoS7Z6R/v2/fwhe6JHmF9eP+nFjr3AFQc1Jmy\nEYI=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:53:41+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:41+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "710", - "self_link": null, - "uid": "6237e455-452c-4d08-8e65-f3c0ca653196" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:57:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "f819e26547044ca01f39a3de688ea1ac9f3dba65", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:47+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1462", - "self_link": null, - "uid": "88d97617-fe70-4218-815c-4c135e4d4aa8" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:25+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "1f59b556d2fe0ed2a00f3d15f473116ea4354b1d", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:31+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1678", - "self_link": null, - "uid": "8e14411f-ee6f-404c-a863-853720927edc" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:57:33+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "93cedd4effb00279ed5cf83c1a60939b7c3c8caa", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1443", - "self_link": null, - "uid": "887e467a-57b0-49a7-b938-0aa467d3e86b" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:15+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "319c617f3b249bf704852b93752044cadcaaf539", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:23+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1640", - "self_link": null, - "uid": "980d4f3c-90ce-4f25-a5d2-2fefa4c65890" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1129", - "self_link": null, - "uid": "3b2f5b76-0615-492c-873e-627f6e0079e8" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.187.21", - "cluster_i_ps": [ - "10.96.187.21" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:52+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "f65d26d517df21f2b462cf8c1d2c3c814978725b" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:52+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1484", - "self_link": null, - "uid": "e85086a3-f085-43b7-b6b3-2adc3f94e8f9" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.190.140", - "cluster_i_ps": [ - "10.96.190.140" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 31849, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 31587, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 30508, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-4-worker" - }, - "creation_timestamp": "2024-01-07T16:57:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "964ae7636e561483df646be3a2ab13e6f852b882", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:11+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:15+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:36+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1420", - "self_link": null, - "uid": "3521779c-ac4b-4ad9-acac-5a9605b4fde4" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-3521779c-ac4b-4ad9-acac-5a9605b4fde4" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-4-worker" - }, - "creation_timestamp": "2024-01-07T16:57:58+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0cd9681e9f40abb47152bdb9d35cab3969b54ad7", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:58+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:02+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:24+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1646", - "self_link": null, - "uid": "bae66940-f3f1-4840-9706-7a2314ca57b9" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-bae66940-f3f1-4840-9706-7a2314ca57b9" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-4-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:10+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "eef1e03df22501ef56dcf5b3184c261afb94a25b", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:10+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:14+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:32+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1404", - "self_link": null, - "uid": "3868a777-c72c-4cbb-a4ba-c2e6c5b073d8" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-3868a777-c72c-4cbb-a4ba-c2e6c5b073d8" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-4-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:53+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "7c8dd822967635c760f5791cc8d5bc3389fcab4b", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:53+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:58+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:15+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1610", - "self_link": null, - "uid": "bd557768-c230-40e8-9199-ae6a4cac7d96" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-bd557768-c230-40e8-9199-ae6a4cac7d96" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:04+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"794e5d57-c253-4f4a-ac71-be52a28a692f\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:04+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:28+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - } - ], - "resource_version": "1608", - "self_link": null, - "uid": "19585b4d-eccc-45d9-93af-4d0c18b96dba" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:58:15+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1124", - "self_link": null, - "uid": "38633ed3-a4c6-4835-82d6-161e78d40af1" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-5vwx2": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTIzOVoXDTM0MDEwNDE2NTIzOVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOcs\nLoK0Z2252UdXtBGLvbPqaHYlgC4J2rgvyyJnDmOdqocUdl8A3zUxtBMF/zah8h5c\nToHZhQAYfvasG+lhKVc9VvxIz8ny6ji+rTkMTTjb7foG+DiQ9uXbLCeaX/1MXVYB\nFxJ0UI7bF++om2dnRcEsCdm3A8POTlRPsQNguq16LzcRrwcCT/gzlDVe7Su/e0dl\nQamS7UdjnSBc0BRiFIedkCIjwL1mEFtK9+NwhJKW4TCclyg6mvy3HXJ5degsIh7J\nDrH+gucmWhq0Q/pP0g46OJx2+dclTOknal50+WUsfF3Lt5YBJxWlVTGv8u9/jTZo\nSIDIqDjYezcc7I6w0AsCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFL9frbQYB40rcOKk1Rv/dKUWbq3gMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAA1Ld/UMIx8GlGtGJD2h\n/VVZfbP2oGe5rzq7FTJ++ZowPq7/4ncxEcjTQkmdkFj8OljchPRO3te3XGnQ18ec\n13ffBCPj+ziqHfp3VPOV38unIt9amFnfatlkfmGtX2UoztLO+t23AtV8uStKwS3c\nJuDEsvCcJL7wt85tAPGnNi8NqnPxsWG8VivsQiWFsvNmjLALHypSqHWMkrNeJ9ft\n7uNLayWIG0Ce6+wWfCgjECYnGG8UmrwN4jmf4dl3usKYQ6pnl7Bu+wCyw8ooQT8U\n+dsXzgSiu1q+WzOg3vS6mbEWXx9SoS7Z6R/v2/fwhe6JHmF9eP+nFjr3AFQc1Jmy\nEYI=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ikw2TWp5RUo2VkxNX3lIeUJjWHE3d2lBT3g3WVlvc2kxVzEyTE5LS3hMSzgifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi01dnd4MiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiNzc3MmM1MGUtYzc1Yy00ZmE1LWI2NWQtZjUzZjJhYmQ3NzZiIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.OIjnj5pK4eXW_yHreaaPPf6EZiwCBpdrQ9mN5m1qv-WJCX8-v2MbJJrVqVXVH0UGuIcLLZoz6oOb7Ayf-jOizT4_bVtc2t9-V4yF1C05dZHhmvhh8Hl9QzBKxZnL-7zR6gMC-0HBLxCQJT1d_R6N_s58Bc_IQXiiqPdiXBxNMx1usLaZo5l_XIvq3cxJRw8akfLQu_SMsG73TfUbUMh_RhoQ0l3RWIw9RHjhrZfgHWMOD09WKHCyg2F631GaWNILb8PlI60l0w9UDQdVqdfRGY9t0M8cWgZUkKIJS42oiiDcy5brf9lL_nWYAyY-IzFzmyFycC0cDImSS7TS0tX92g" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "7772c50e-c75c-4fa5-b65d-f53f2abd776b" - }, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "clickhouse-operator-token-5vwx2", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1115", - "self_link": null, - "uid": "9edcacab-7020-477e-b383-b010159f5a2a" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-gjkln": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTIzOVoXDTM0MDEwNDE2NTIzOVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOcs\nLoK0Z2252UdXtBGLvbPqaHYlgC4J2rgvyyJnDmOdqocUdl8A3zUxtBMF/zah8h5c\nToHZhQAYfvasG+lhKVc9VvxIz8ny6ji+rTkMTTjb7foG+DiQ9uXbLCeaX/1MXVYB\nFxJ0UI7bF++om2dnRcEsCdm3A8POTlRPsQNguq16LzcRrwcCT/gzlDVe7Su/e0dl\nQamS7UdjnSBc0BRiFIedkCIjwL1mEFtK9+NwhJKW4TCclyg6mvy3HXJ5degsIh7J\nDrH+gucmWhq0Q/pP0g46OJx2+dclTOknal50+WUsfF3Lt5YBJxWlVTGv8u9/jTZo\nSIDIqDjYezcc7I6w0AsCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFL9frbQYB40rcOKk1Rv/dKUWbq3gMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAA1Ld/UMIx8GlGtGJD2h\n/VVZfbP2oGe5rzq7FTJ++ZowPq7/4ncxEcjTQkmdkFj8OljchPRO3te3XGnQ18ec\n13ffBCPj+ziqHfp3VPOV38unIt9amFnfatlkfmGtX2UoztLO+t23AtV8uStKwS3c\nJuDEsvCcJL7wt85tAPGnNi8NqnPxsWG8VivsQiWFsvNmjLALHypSqHWMkrNeJ9ft\n7uNLayWIG0Ce6+wWfCgjECYnGG8UmrwN4jmf4dl3usKYQ6pnl7Bu+wCyw8ooQT8U\n+dsXzgSiu1q+WzOg3vS6mbEWXx9SoS7Z6R/v2/fwhe6JHmF9eP+nFjr3AFQc1Jmy\nEYI=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ikw2TWp5RUo2VkxNX3lIeUJjWHE3d2lBT3g3WVlvc2kxVzEyTE5LS3hMSzgifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi1namtsbiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiYzI1YzQ1OTMtZmFjZS00M2EwLTg4MGQtOTY5MjI3YjY5NDhmIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.iLtc9czOiGPR8A0Vkhs0OrITVgsjup5jyis5PMNUBQTi36r8ft1CwTg9iHBtHayUinr-fG0RZfCHQLFxEDwI7dRv8UY6XEqgnaRZs_8ZkOTgseFAwPFCMwknnOfb0V7SfSstVgPenABjcBLCuGBKCyfhK4tyYcX8O7bWbCdWJv0NKthaCM_DqPludprifbi0IOdtjZg8EFYveaUfuYmWRyueMtEiTKSdhAqjMwLWvqlfWoIYQTiQPd8FNlNlnLnDsnsSn_osGZ3bo_Hr62uoYpH-jBRV18OyIEup9gseLFpfiSqzE5x56cnNrUj6VCObG1z4S2g22r76YA3eP-IkTg" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "c25c4593-face-43a0-880d-969227b6948f" - }, - "creation_timestamp": "2024-01-07T16:53:41+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:41+00:00" - } - ], - "name": "default-token-gjkln", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "711", - "self_link": null, - "uid": "c9ddf31a-a4ee-4143-9e62-9deff1ee399b" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "f819e26547044ca01f39a3de688ea1ac9f3dba65", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:47+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1464", - "self_link": null, - "uid": "b186146e-56f0-4751-b61e-5e2183eefcbf" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-4-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1460", - "uid": "b7912c4e-1bc7-4f68-945e-55faf52cd1a7" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:25+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "1f59b556d2fe0ed2a00f3d15f473116ea4354b1d", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:31+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1679", - "self_link": null, - "uid": "973260e5-dc38-4731-81f0-155b5b227537" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.2.7", - "node_name": "acto-0-cluster-4-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1673", - "uid": "8f727eac-bd51-421f-923f-4d6ed35b96a1" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:33+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "93cedd4effb00279ed5cf83c1a60939b7c3c8caa", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1445", - "self_link": null, - "uid": "9272305f-7aa9-490d-a8c6-5020b7a0351a" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.1.6", - "node_name": "acto-0-cluster-4-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1442", - "uid": "bb53ea98-8d77-4c6e-952b-6662b99a2889" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:15+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "319c617f3b249bf704852b93752044cadcaaf539", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:23+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1642", - "self_link": null, - "uid": "485b1f00-ce4c-4886-abc0-8c04e87739b9" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-4-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1637", - "uid": "0c16a5cd-19c9-4485-a587-e8c03f4c3dd3" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:33+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1203", - "self_link": null, - "uid": "e7f352f1-a17f-4bf5-81b4-7d4e1ab99a4f" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.3.4", - "node_name": "acto-0-cluster-4-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-nt6ww", - "namespace": "acto-clickhouse", - "resource_version": "1193", - "uid": "8c33cd25-4fc5-4f62-b839-047689ae925e" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:58:15Z" - }, - "creation_timestamp": "2024-01-07T16:57:52+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "f65d26d517df21f2b462cf8c1d2c3c814978725b" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:52+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1674", - "self_link": null, - "uid": "0905ebff-55a6-4239-885b-20e8eb73a034" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.6", - "node_name": "acto-0-cluster-4-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1442", - "uid": "bb53ea98-8d77-4c6e-952b-6662b99a2889" - } - }, - { - "hostname": null, - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-4-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1637", - "uid": "0c16a5cd-19c9-4485-a587-e8c03f4c3dd3" - } - }, - { - "hostname": null, - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-4-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1460", - "uid": "b7912c4e-1bc7-4f68-945e-55faf52cd1a7" - } - }, - { - "hostname": null, - "ip": "10.244.2.7", - "node_name": "acto-0-cluster-4-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1673", - "uid": "8f727eac-bd51-421f-923f-4d6ed35b96a1" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-5vwx2\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:27+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1117", - "self_link": null, - "uid": "7772c50e-c75c-4fa5-b65d-f53f2abd776b" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-5vwx2", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:53:41+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "712", - "self_link": null, - "uid": "c25c4593-face-43a0-880d-969227b6948f" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-gjkln", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: 0493a016-92de-49db-b139-a6e074cf7167", - "actions": [ - "2024-01-07T16:58:44.573908037Z reconcile completed successfully, task id: 0493a016-92de-49db-b139-a6e074cf7167", - "2024-01-07T16:57:00.485439021Z reconcile started, task id: 0493a016-92de-49db-b139-a6e074cf7167" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.3.4", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:00Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1710", - "uid": "794e5d57-c253-4f4a-ac71-be52a28a692f" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.3.4" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.2.5", - "10.244.2.7", - "10.244.1.6", - "10.244.1.8" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "eabdc81d-c676-4f4e-872c-a77e53341771", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.2.5", - "10.244.2.7", - "10.244.1.6", - "10.244.1.8" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "eabdc81d-c676-4f4e-872c-a77e53341771", - "taskIDsCompleted": [ - "eabdc81d-c676-4f4e-872c-a77e53341771" - ], - "taskIDsStarted": [ - "0493a016-92de-49db-b139-a6e074cf7167" - ] - } -} \ No newline at end of file diff --git a/clickhouse-result/trial-05-0000/mutated-000.yaml b/clickhouse-result/trial-05-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-05-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-05-0000/system-state-000.json b/clickhouse-result/trial-05-0000/system-state-000.json deleted file mode 100644 index 89bc8d7c63..0000000000 --- a/clickhouse-result/trial-05-0000/system-state-000.json +++ /dev/null @@ -1,11662 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"4df6f89e-a078-43bf-98de-bd47f154cb36\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:50+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.6\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "4df6f89e-a078-43bf-98de-bd47f154cb36" - } - ], - "resource_version": "1529", - "self_link": null, - "uid": "29eb8094-444c-4a8e-b648-5daed87012a7" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-whg5v", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-5-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-whg5v", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://1618a509636951a3599e8a7ad493e885dd4de97678261db5a7e56d3def11a49a", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:55+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.5", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.6", - "pod_i_ps": [ - { - "ip": "10.244.3.6" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:54+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:36+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"9b839cdb-070a-4173-90aa-f075a2f45ff6\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:36+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:37+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.11\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:53+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "9b839cdb-070a-4173-90aa-f075a2f45ff6" - } - ], - "resource_version": "1748", - "self_link": null, - "uid": "b26669c9-c2c3-481d-a906-0c881e75ae3f" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-trfc6", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-5-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-trfc6", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:41+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:53+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:53+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:41+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://0b2f336dc7ec203cf9c0a79797ff8ac7f89a5477824e426e2486be59565d8aab", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:42+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.8", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.11", - "pod_i_ps": [ - { - "ip": "10.244.1.11" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:41+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"d3e18c45-2d9b-4618-a6b4-b69d8de80dc0\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:50+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.9\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "d3e18c45-2d9b-4618-a6b4-b69d8de80dc0" - } - ], - "resource_version": "1513", - "self_link": null, - "uid": "f9615780-6470-4419-a81f-c5fe92fb971e" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-s7w4n", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-5-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-s7w4n", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:54+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://32392574c403e4832b08569b624919c7ca2135ccf2f948110764b9b9879d8bf6", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:55+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.8", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.9", - "pod_i_ps": [ - { - "ip": "10.244.1.9" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:54+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"81e711a2-896e-48b4-8d9f-5d127045e71a\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:32+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:33+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:49+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "81e711a2-896e-48b4-8d9f-5d127045e71a" - } - ], - "resource_version": "1711", - "self_link": null, - "uid": "10a2005f-a25c-4537-af75-97dad8b8c2c3" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-p9s6v", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-5-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-p9s6v", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:37+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:37+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://19f3bbded11d7c361c3e189c2dd9f6653e8aeb0ba7fad0e4bff2e12eff85097d", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:38+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.9", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.5", - "pod_i_ps": [ - { - "ip": "10.244.2.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:37+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:57:10+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ff6735e0-5f63-4e7d-91a4-ad6fa8c945d4\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:10+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:11+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:12+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.7\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:12+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-cwm72", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "ff6735e0-5f63-4e7d-91a4-ad6fa8c945d4" - } - ], - "resource_version": "1258", - "self_link": null, - "uid": "3229ac84-a17e-48f5-a15e-ec68a88f8455" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-dcsxq", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-dcsxq", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-5-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-dcsxq", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:10+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:12+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:12+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:10+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://7136dd6d85462511d47f8142bcb2511c152992acb6f9fa8ac3fc1643b0fd3ffc", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:12+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://8e25be46da67c19bad9f47075a21e7bfdc91c1e530fb1a6b7eaf58debb90b078", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:12+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.8", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.7", - "pod_i_ps": [ - { - "ip": "10.244.1.7" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:10+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "43ff299c8932e7c8aa9c577a85db41b565210ba9", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:06+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1462", - "self_link": null, - "uid": "4df6f89e-a078-43bf-98de-bd47f154cb36" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:36+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "e7804201b40e23d63267e946cdb67c93a4a03f48", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:36+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:53+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1684", - "self_link": null, - "uid": "9b839cdb-070a-4173-90aa-f075a2f45ff6" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ace16d6e686df1f374f95082e3ab8189d6f009d7", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:06+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1459", - "self_link": null, - "uid": "d3e18c45-2d9b-4618-a6b4-b69d8de80dc0" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "793d98b3eeebac47584a426613691ad26373943c", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:32+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:49+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1671", - "self_link": null, - "uid": "81e711a2-896e-48b4-8d9f-5d127045e71a" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:10+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:conditions": { - "k:{\"type\":\"Available\"}": { - "f:lastTransitionTime": {}, - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {}, - "f:status": {} - } - }, - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:11+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:13+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1273", - "self_link": null, - "uid": "671d022e-0615-4fc2-bb3d-3858a5c66d46" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:57:07+00:00", - "last_update_time": "2024-01-07T16:57:07+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:57:05+00:00", - "last_update_time": "2024-01-07T16:57:13+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "9c16fd41ae35d34759922f90ef6cbe7ba2d71eaa" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1737", - "self_link": null, - "uid": "23b6c72c-becc-4acd-9c89-69c7cabcce96" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.1.7\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.3.6\n 10.244.1.11\n 10.244.1.9\n 10.244.2.5\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:41+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "a100796d990cb01ed2c806eeb6c1a6b3f9e42561" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:41+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1727", - "self_link": null, - "uid": "ef2d06e2-7a86-44b2-a3a3-d3b30f9fbe60" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:45+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "372e4cc9ee69005c1d49a1dcb92293742f892cca", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:45+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1345", - "self_link": null, - "uid": "f21799e1-a2bd-49d4-b958-653b1c9ed015" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:34+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "7eaaeaa3c9a7639988ede2de42dfd723563abae7", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:34+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1587", - "self_link": null, - "uid": "59642cca-ca6e-4fa8-a8d9-07274132f46a" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b4dd123190dee3c55c9131ad28d1e950068abb5a", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1344", - "self_link": null, - "uid": "0a11c9d0-98d7-4abf-ab0d-2871657a5e11" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "2ab4ba8e20f8369f8e660425e39957041560a195", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1539", - "self_link": null, - "uid": "cc637a29-29d3-486c-b026-ffa8e51f5653" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1183", - "self_link": null, - "uid": "b495825b-bbfa-456b-bdaa-820af8377bd6" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1184", - "self_link": null, - "uid": "2de1ac7b-0339-4a73-9035-62513b805fec" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1180", - "self_link": null, - "uid": "a2133935-9261-4411-aad4-2c587d7576a5" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1185", - "self_link": null, - "uid": "866b668f-aed6-41d5-b7ab-499bd54451ea" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1186", - "self_link": null, - "uid": "a87fc6a4-4701-4faa-8b6a-4ccb0bfaca15" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI0MFoXDTM0MDEwNDE2NTI0MFowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA3\nZFaKz81FZSD7X91rKSUpolSjO8OM9YTNj1Vui+309QZRKzftA8S8UtHU6FC6kf80\n637brgXf07wo+2xQ8JEtGJOch7tJ2Dibf0hz00b5Ez47Gx6VU+aCzI2kY22O34U/\nuBH/nLfQca+ARldJoH5Eav9i22KkiYPHIdidvW7Fa0qi6aC6elyzyna6iXsVQP4k\np94RNySKccQjQ9n6Cc/UJjxoDy3qZDWuc7r2upJKSwVkmsw1V/tRPs84jRtoDyWG\niOF6xkqL/J0ktgprXiRENZI5ofrqhHra/pFgeG530maT+LXNTXdDsjc7XgdU+hXn\nj0wFQ5SDJA5FvQaB5BUCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFJ7DYoNhSYBjH/3HeZAE6sc2BnqgMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBACwYPbozDMiL3AOCl2/Q\nQN/Rs7ibyh4liGMHedYQqrTE54br1JQq2rhtoad1nmW6sy4AWP5Y50iEVoW/lCvf\ndva5EAMcgEp3fv8HpufCTVoOWnWXWpChYuDHkFWHJ7Dfwix/kVGOkIMPA784NaSj\naP3IV40L/VjZ05F5nLLMNYlKPSa9sPKHrwblWWN1dgLIYGDjRAAirgppASUKnX0d\nBrpuD+aqL4OUXS0b3WgEXRpeeEofbknxlHUF6nQE8oryZ0D82Vuz0mf3lp2wQJXt\n5OGmnMa8wVVy37PSwMg1+KzmBlijD3N75vapBlldOkAxtkfUCqQ78azI3aop6/b8\nH2E=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:53:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:44+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "721", - "self_link": null, - "uid": "45f1913d-7e1c-424f-a289-deb9f2d76284" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:16+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6b77c27946becc4856aff8b1f1f7b07f89dec9e2", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:25+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1531", - "self_link": null, - "uid": "c79cb03b-56f6-41dc-80aa-e4241053411a" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:59:04+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "4e1a5c5e62ba9673fab4f2f1c6f69fae7f82bce6", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:10+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1751", - "self_link": null, - "uid": "4e6a8d9a-892f-4ff1-955c-7609a2f27ce0" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ca5c5f534b2ac1c63b073cc75cce502dd35c3991", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:21+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1514", - "self_link": null, - "uid": "3ba0870c-83c5-40ea-9af0-f1bca29adfb2" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:54+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "930612795e9b428b2ac93b5cf932deb2272a06c0", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:02+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1716", - "self_link": null, - "uid": "151fb212-54f4-4e52-9344-b675534e7663" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1192", - "self_link": null, - "uid": "0f758d8a-fa92-495f-8c09-01c9d5e9d46d" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.2.84", - "cluster_i_ps": [ - "10.96.2.84" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:30+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "efedb20564e20c13b844decaa5a1c74c9890ec94" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1552", - "self_link": null, - "uid": "55d1e94a-c13d-484f-bf8e-009d57812aca" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.213.223", - "cluster_i_ps": [ - "10.96.213.223" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 31474, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 31266, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 31178, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-5-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b400684039547b110df14495c10390cf19a34ba0", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:53+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:15+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1489", - "self_link": null, - "uid": "ae0e1cf9-0a7e-44b9-9b43-ee5ce241b991" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-ae0e1cf9-0a7e-44b9-9b43-ee5ce241b991" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-5-worker3" - }, - "creation_timestamp": "2024-01-07T16:58:36+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "c42b50bb1822f7b897fa14dfbc9474fb350b52da", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:36+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:40+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:03+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1721", - "self_link": null, - "uid": "1395e80a-976d-4dda-9d11-0806338463f7" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-1395e80a-976d-4dda-9d11-0806338463f7" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-5-worker3" - }, - "creation_timestamp": "2024-01-07T16:57:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "67ae0bf280e19c11975f5a3a3c48eec39f85ba93", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:49+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:53+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:11+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1475", - "self_link": null, - "uid": "b7f66d21-ce9f-460f-a433-4fe552a139bd" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-b7f66d21-ce9f-460f-a433-4fe552a139bd" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-5-worker" - }, - "creation_timestamp": "2024-01-07T16:58:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "4100db9601e113286704878cc72204925f6f0aba", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:32+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:36+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:54+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1685", - "self_link": null, - "uid": "9deb22a5-714d-4514-bc5e-7c52274b7cdf" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-9deb22a5-714d-4514-bc5e-7c52274b7cdf" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:42+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"a27e4116-8911-4c34-b6b1-07664a578ac2\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:42+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:06+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - } - ], - "resource_version": "1683", - "self_link": null, - "uid": "a8bd7e72-b542-4958-a88a-aaa18aa1b1f1" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:58:53+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1187", - "self_link": null, - "uid": "ad0eafac-29ab-42cb-a9f9-fe99ae03e1e6" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-rrtsk": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI0MFoXDTM0MDEwNDE2NTI0MFowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA3\nZFaKz81FZSD7X91rKSUpolSjO8OM9YTNj1Vui+309QZRKzftA8S8UtHU6FC6kf80\n637brgXf07wo+2xQ8JEtGJOch7tJ2Dibf0hz00b5Ez47Gx6VU+aCzI2kY22O34U/\nuBH/nLfQca+ARldJoH5Eav9i22KkiYPHIdidvW7Fa0qi6aC6elyzyna6iXsVQP4k\np94RNySKccQjQ9n6Cc/UJjxoDy3qZDWuc7r2upJKSwVkmsw1V/tRPs84jRtoDyWG\niOF6xkqL/J0ktgprXiRENZI5ofrqhHra/pFgeG530maT+LXNTXdDsjc7XgdU+hXn\nj0wFQ5SDJA5FvQaB5BUCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFJ7DYoNhSYBjH/3HeZAE6sc2BnqgMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBACwYPbozDMiL3AOCl2/Q\nQN/Rs7ibyh4liGMHedYQqrTE54br1JQq2rhtoad1nmW6sy4AWP5Y50iEVoW/lCvf\ndva5EAMcgEp3fv8HpufCTVoOWnWXWpChYuDHkFWHJ7Dfwix/kVGOkIMPA784NaSj\naP3IV40L/VjZ05F5nLLMNYlKPSa9sPKHrwblWWN1dgLIYGDjRAAirgppASUKnX0d\nBrpuD+aqL4OUXS0b3WgEXRpeeEofbknxlHUF6nQE8oryZ0D82Vuz0mf3lp2wQJXt\n5OGmnMa8wVVy37PSwMg1+KzmBlijD3N75vapBlldOkAxtkfUCqQ78azI3aop6/b8\nH2E=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImUydmJVaHJibzZ5c1hoYUNFSTVwR1NpSmRLVmRPSUtwbmd1anBrYzZrcUkifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi1ycnRzayIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiMzJjYzY5NWItZWQxZS00NzQ3LTliMmUtM2U4ZWMwMzhjNDBhIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.dv3akBQB1LWe_rLiKMScx9QcmlT5XnmQXn7fatWaRXtr8NhPokgcRiOq8LQdsurgapm9nSqtVTfBjTLsjNtYAykyH2Lw1FHw0VADRsEWf8CokVW42MWCx7Hk8_DeUONguIDp4QCSeIpU2U57AxMjdSXB5yHgiZR-3ZH1MDa3fZf-cAoCfjGqmH48gUHJm2mH1jxM-8Yn5i8TN-R0ilKu8VJzC08JxR3SuoTuewZ2bxCNOmtIOZUpMMT7lrn2h97pCIYcGzPKKwvTkQNww3K2mhuZbUJXvGdgUoMaaHstF8hF2Fmz_tKXi_4QokrKxmS_OFBAMsfEN2aR6kcAel2dhw" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "32cc695b-ed1e-4747-9b2e-3e8ec038c40a" - }, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "clickhouse-operator-token-rrtsk", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1179", - "self_link": null, - "uid": "992f6aba-7e0d-4540-9bc5-daa021e90f80" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-w2dxn": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI0MFoXDTM0MDEwNDE2NTI0MFowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA3\nZFaKz81FZSD7X91rKSUpolSjO8OM9YTNj1Vui+309QZRKzftA8S8UtHU6FC6kf80\n637brgXf07wo+2xQ8JEtGJOch7tJ2Dibf0hz00b5Ez47Gx6VU+aCzI2kY22O34U/\nuBH/nLfQca+ARldJoH5Eav9i22KkiYPHIdidvW7Fa0qi6aC6elyzyna6iXsVQP4k\np94RNySKccQjQ9n6Cc/UJjxoDy3qZDWuc7r2upJKSwVkmsw1V/tRPs84jRtoDyWG\niOF6xkqL/J0ktgprXiRENZI5ofrqhHra/pFgeG530maT+LXNTXdDsjc7XgdU+hXn\nj0wFQ5SDJA5FvQaB5BUCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFJ7DYoNhSYBjH/3HeZAE6sc2BnqgMBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBACwYPbozDMiL3AOCl2/Q\nQN/Rs7ibyh4liGMHedYQqrTE54br1JQq2rhtoad1nmW6sy4AWP5Y50iEVoW/lCvf\ndva5EAMcgEp3fv8HpufCTVoOWnWXWpChYuDHkFWHJ7Dfwix/kVGOkIMPA784NaSj\naP3IV40L/VjZ05F5nLLMNYlKPSa9sPKHrwblWWN1dgLIYGDjRAAirgppASUKnX0d\nBrpuD+aqL4OUXS0b3WgEXRpeeEofbknxlHUF6nQE8oryZ0D82Vuz0mf3lp2wQJXt\n5OGmnMa8wVVy37PSwMg1+KzmBlijD3N75vapBlldOkAxtkfUCqQ78azI3aop6/b8\nH2E=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImUydmJVaHJibzZ5c1hoYUNFSTVwR1NpSmRLVmRPSUtwbmd1anBrYzZrcUkifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi13MmR4biIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiMzdjNThiODctNTY5Mi00ODFjLWFhZDAtMWVlY2U3MjMzMWZlIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.nobSWEEkNs2a7zDkLVt3gTvmRIZWHK6oBquST-pqTuKsYrhomqcvfkEXPdfEqTJ-eFuCx4eF6OYNYdangqKyWMSRSxUbOS4EOO2nPipaq4s5NDqU14WnbC6kSNvHpS0yvjPxujOciwyw_GaBmVbQ_frkrlw-mqTnifhOv9jFhit7-bPOh6tSkMZj-xr5NCKkmWocvMzgwdzowhD-ZvAv8hW_qJ1gQ__GZVVqwfEZ2R6C72ppCaA0RWSwvcuvDLIN88W-Z-VkR7wN57iqyyJ24cjwnvDAH03mC8CcCtWwEl_txPCvL2yejdFdZ15NF2e2r-trOmpIf5fxZ-X0PByF6w" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "37c58b87-5692-481c-aad0-1eece72331fe" - }, - "creation_timestamp": "2024-01-07T16:53:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:44+00:00" - } - ], - "name": "default-token-w2dxn", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "723", - "self_link": null, - "uid": "d6383b50-fd73-4f81-abaf-3bb422ab4718" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:16+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6b77c27946becc4856aff8b1f1f7b07f89dec9e2", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:25+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1532", - "self_link": null, - "uid": "e2c67945-a0d7-4b21-aa40-5453b9031832" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.3.6", - "node_name": "acto-0-cluster-5-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1529", - "uid": "29eb8094-444c-4a8e-b648-5daed87012a7" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:59:04+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "4e1a5c5e62ba9673fab4f2f1c6f69fae7f82bce6", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:10+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1752", - "self_link": null, - "uid": "8ce642b0-172a-45b9-ae0b-3806af81356e" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.1.11", - "node_name": "acto-0-cluster-5-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1748", - "uid": "b26669c9-c2c3-481d-a906-0c881e75ae3f" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ca5c5f534b2ac1c63b073cc75cce502dd35c3991", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:21+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1515", - "self_link": null, - "uid": "95ad0fc6-4841-4d14-b651-10fa492f96ff" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.1.9", - "node_name": "acto-0-cluster-5-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1513", - "uid": "f9615780-6470-4419-a81f-c5fe92fb971e" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:54+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "930612795e9b428b2ac93b5cf932deb2272a06c0", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:02+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1717", - "self_link": null, - "uid": "82aa15f6-3ada-4306-ade5-1cf35271bf43" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-5-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1711", - "uid": "10a2005f-a25c-4537-af75-97dad8b8c2c3" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:13+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1268", - "self_link": null, - "uid": "7966a46a-6b02-4208-9d16-0e9de45ccd44" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.7", - "node_name": "acto-0-cluster-5-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-cwm72", - "namespace": "acto-clickhouse", - "resource_version": "1258", - "uid": "3229ac84-a17e-48f5-a15e-ec68a88f8455" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:58:53Z" - }, - "creation_timestamp": "2024-01-07T16:58:30+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "efedb20564e20c13b844decaa5a1c74c9890ec94" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1749", - "self_link": null, - "uid": "1e259dd1-cf2b-40ca-bf04-98c5a903847c" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.11", - "node_name": "acto-0-cluster-5-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1748", - "uid": "b26669c9-c2c3-481d-a906-0c881e75ae3f" - } - }, - { - "hostname": null, - "ip": "10.244.1.9", - "node_name": "acto-0-cluster-5-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1513", - "uid": "f9615780-6470-4419-a81f-c5fe92fb971e" - } - }, - { - "hostname": null, - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-5-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1711", - "uid": "10a2005f-a25c-4537-af75-97dad8b8c2c3" - } - }, - { - "hostname": null, - "ip": "10.244.3.6", - "node_name": "acto-0-cluster-5-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1529", - "uid": "29eb8094-444c-4a8e-b648-5daed87012a7" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:05+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-rrtsk\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:05+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1181", - "self_link": null, - "uid": "32cc695b-ed1e-4747-9b2e-3e8ec038c40a" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-rrtsk", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:53:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "724", - "self_link": null, - "uid": "37c58b87-5692-481c-aad0-1eece72331fe" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-w2dxn", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: 539613fa-a479-4b41-a8c9-f8323f05599c", - "actions": [ - "2024-01-07T16:59:23.22858434Z reconcile completed successfully, task id: 539613fa-a479-4b41-a8c9-f8323f05599c", - "2024-01-07T16:57:38.934229021Z reconcile started, task id: 539613fa-a479-4b41-a8c9-f8323f05599c" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.1.7", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:38Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1782", - "uid": "a27e4116-8911-4c34-b6b1-07664a578ac2" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.1.7" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.3.6", - "10.244.1.11", - "10.244.1.9", - "10.244.2.5" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "e8f04a62-bc3e-4ed1-bd62-986267a82318", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.3.6", - "10.244.1.11", - "10.244.1.9", - "10.244.2.5" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "e8f04a62-bc3e-4ed1-bd62-986267a82318", - "taskIDsCompleted": [ - "e8f04a62-bc3e-4ed1-bd62-986267a82318" - ], - "taskIDsStarted": [ - "539613fa-a479-4b41-a8c9-f8323f05599c" - ] - } -} \ No newline at end of file diff --git a/clickhouse-result/trial-06-0000/mutated-000.yaml b/clickhouse-result/trial-06-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-06-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-06-0000/system-state-000.json b/clickhouse-result/trial-06-0000/system-state-000.json deleted file mode 100644 index 3f403d784f..0000000000 --- a/clickhouse-result/trial-06-0000/system-state-000.json +++ /dev/null @@ -1,11661 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"856751d1-0124-49fd-949c-d40fc228b798\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:57+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "856751d1-0124-49fd-949c-d40fc228b798" - } - ], - "resource_version": "1461", - "self_link": null, - "uid": "c3ab0539-528e-44ac-8b00-afbc74389e1a" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-wvb89", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-6-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-wvb89", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:45+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:57+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:57+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:45+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://d0f091ec626a6ede06756840d90cb6ff05d09f49f913735a5b333d52bfae42c6", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:46+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.17", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.5", - "pod_i_ps": [ - { - "ip": "10.244.3.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:45+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"3bc8f79a-54a7-4350-bd7c-9833e8244c1f\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.10\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "3bc8f79a-54a7-4350-bd7c-9833e8244c1f" - } - ], - "resource_version": "1654", - "self_link": null, - "uid": "2c31893a-3229-4043-9118-8a9eb82676bb" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-9946s", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-6-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-9946s", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:31+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:31+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://983f5b2d64708435ea42f302273c0566c97e14f4a3ebf8d1a86949af5ba51193", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:31+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.16", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.10", - "pod_i_ps": [ - { - "ip": "10.244.1.10" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:31+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ef4b7b52-1b61-48fe-a7c0-10efb3766c67\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:41+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.5\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:57+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "ef4b7b52-1b61-48fe-a7c0-10efb3766c67" - } - ], - "resource_version": "1477", - "self_link": null, - "uid": "97b3a18b-9c38-4f29-af95-b5811b12aea8" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-ztt94", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-6-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-ztt94", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:45+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:57+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:57+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:45+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://8fa4615fccf04c6505c7a262977b74f938f5ebc80e2d9521d1c7bf630d9b9fbd", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:46+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.15", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.5", - "pod_i_ps": [ - { - "ip": "10.244.2.5" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:45+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"2d2ac28d-6c22-4954-9c94-64317ccdcd91\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.3.7\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:44+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "2d2ac28d-6c22-4954-9c94-64317ccdcd91" - } - ], - "resource_version": "1686", - "self_link": null, - "uid": "dd40fa83-20ae-4a15-877f-362a7bf32230" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-jblhh", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-6-worker2", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-jblhh", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:32+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:44+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:44+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:32+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://06538db5db38a1e0ff850c7e1fa46d21cf18f877b920ecf689ede500cea4be5f", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:33+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.17", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.3.7", - "pod_i_ps": [ - { - "ip": "10.244.3.7" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:32+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"5097cae8-6a73-4281-a581-fcefd2fadcba\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:02+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.8\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:03+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-tvmvt", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "5097cae8-6a73-4281-a581-fcefd2fadcba" - } - ], - "resource_version": "1206", - "self_link": null, - "uid": "f34b60db-0f09-4add-842c-aaafa8962900" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-wpzfw", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-wpzfw", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-6-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-wpzfw", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:01+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:03+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:03+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:01+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://74641727f25acd0be8da952efb622bfb37c1332f7ffb1eaa63aa38be04c586e9", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:02+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://501b8d887dafa9b64bc10b81ee75c5417d0a72a2cb69dcdca124e081f8f309ab", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:02+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.16", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.8", - "pod_i_ps": [ - { - "ip": "10.244.1.8" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:01+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b0191ae5204762d8411a73a5beda9708c1f3ed7a", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:57+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1407", - "self_link": null, - "uid": "856751d1-0124-49fd-949c-d40fc228b798" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "3e0995f80c030937ef6d5e9ecb98bc8727b3a782", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1620", - "self_link": null, - "uid": "3bc8f79a-54a7-4350-bd7c-9833e8244c1f" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "7d510c043a9d5e30ae150597fce25b815800c402", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:57+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1410", - "self_link": null, - "uid": "ef4b7b52-1b61-48fe-a7c0-10efb3766c67" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "1f6b95f51cdcc9e9ae3a0b5828718f497d71cd42", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:44+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1625", - "self_link": null, - "uid": "2d2ac28d-6c22-4954-9c94-64317ccdcd91" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:57+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:conditions": { - "k:{\"type\":\"Available\"}": { - "f:lastTransitionTime": {}, - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {}, - "f:status": {} - } - }, - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:03+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1221", - "self_link": null, - "uid": "20e571c6-8a45-4f96-98f7-2250b8e917b7" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:56:58+00:00", - "last_update_time": "2024-01-07T16:56:58+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:56:56+00:00", - "last_update_time": "2024-01-07T16:57:03+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:31+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b2aaf6cc19187b4114783179ca4b3a29a74110ed" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:31+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1676", - "self_link": null, - "uid": "afdbb089-a1b3-4f20-8cf5-c94405ea3bd2" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.1.8\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.3.5\n 10.244.1.10\n 10.244.2.5\n 10.244.3.7\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "1e0ed35b4d25ec337109ba94a3b69fc5c7d4a1e7" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:32+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1673", - "self_link": null, - "uid": "0e85a304-22ba-4c95-a4d6-bdb16da21cd3" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:35+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0b6b6affde34eb5ce752bb6418e679e8f1519d1d", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:35+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1294", - "self_link": null, - "uid": "7f1d368b-53d8-4bea-b360-2adc7bfab90e" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:21+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "179a6e7292b462a41462e5c36ec480ce403142c8", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:21+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1507", - "self_link": null, - "uid": "ebc09978-fafd-4f85-9d26-31794df30aa1" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:35+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "897e722374d8e794467c712ed2809b435d1229fb", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:35+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1295", - "self_link": null, - "uid": "48810eee-a49c-40cf-b279-ce92b7efe83c" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "58000e6c9a01d395c3c03ce3e55c38ea65cdacd5", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:23+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1510", - "self_link": null, - "uid": "fb3be0c4-ca54-4c7d-8281-453290de4554" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1134", - "self_link": null, - "uid": "41cde141-3463-4970-8d42-be224b61ba5a" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1135", - "self_link": null, - "uid": "a0c92646-df70-4029-bc30-af7f613d8a2c" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1133", - "self_link": null, - "uid": "bd35155f-582f-464b-8bcb-fee2af64239e" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1136", - "self_link": null, - "uid": "afc88643-3b10-4168-8be2-81442fa8a925" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1138", - "self_link": null, - "uid": "4bf60332-1bce-4988-a722-c5731c57d6cf" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5r\nKvzV5TKuciTXtobeJbZ5Q3rIl761vlazxI8uk60HqhTS0wtc1l3hWC42weOOiX5C\n5XFEBgICgOwVWStVaKnW1unewXb7tONS3ViR3Vk1QEz4iyICz9e8R4uY61SXQ022\ndNglzBmwImRPZ3P/q5YJRRjLrwXs1N+SjdhxxYGn7HuLPw+wJKeWrneiUQpj6dfj\nwADb1mM1fdwpv+hxfLKPZBiymDa/q2iYmZULY8gps/XQ29VmkGCdvBbWHj6m3Diu\niG2CdmlHZVJF9v6LBgN+eDWr+7sJY50CLxHJm2/6QnH0pgQyE1fvxPfwwKcFaekj\nZIzmJyWGnlwiFsDIu38CAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFA0VmnQe6AXEl7iT7V4BggvvV/G1MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAG93rCzOfZ6NG/wBROfi\nufzFLBJpwXeRE8ZWEs8BfJJD9BFm1SDMH/u/3YhC71e/ALKC6Oe1YSHFCIRQMr/3\nl2+CXNivNlU3/J+toUW7R9+SaRSRnLVh1ttKjRtM3GjBrtPqWlOlDt8qpCXwray3\ng8aByHz3nUJFmTCwdKM0SLWkCz5X26XEAdkUktyMFNoVZ9D2iBccCOFx6J2z7ijc\n1rw3fSRGuB7QHxVkYVKhdBv8pjmYwzi5Nkf4TbmwLvkoniXJz5qQU22qbBRTvFO9\nqPCH/ZPbRs+bEZdA9vNT5gBrmXYNb9SYReQTgDJn0rLzb4mx1Ru4CxpBbMs92NSW\nt5I=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:53:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:59+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "705", - "self_link": null, - "uid": "6e02c4a0-aae2-45ad-aee7-e98ad5d83474" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:02+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "56e352341539652776caaf9f2bb183ed81d75556", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:12+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1462", - "self_link": null, - "uid": "f7610952-2555-4211-9723-dc36c6b7dfac" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:48+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "dcb6968d24d4310f0f138c005530b265c6ff3c2d", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:53+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1662", - "self_link": null, - "uid": "4f02853c-694f-4be6-b416-8f2d05240d25" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:07+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "d59f70dc7749d7feedf4631e9fafceb87f836fd5", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:16+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1478", - "self_link": null, - "uid": "6955de51-fc4e-43e4-ab67-ac2259e812a6" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:53+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "7a24bd41b7b57887122a7f985b5e2197997c2382", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:01+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1690", - "self_link": null, - "uid": "587f3132-29dd-4744-9341-d0f7f80464b2" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1144", - "self_link": null, - "uid": "68af9410-ee71-4a80-ab62-f06114fd30fe" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.77.87", - "cluster_i_ps": [ - "10.96.77.87" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:17+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "320174e91e4e2fb173124df408729b11513d1200" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:17+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1488", - "self_link": null, - "uid": "f1464947-ef83-4c76-af7d-b158c97d2761" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.47.163", - "cluster_i_ps": [ - "10.96.47.163" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 32619, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 31179, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 31566, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-6-worker2" - }, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "74ae82ec4c03b83bd73b1a62fb55ce30d7185763", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:02+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1422", - "self_link": null, - "uid": "26412716-095d-4bda-b0f3-27c3973fde5f" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-26412716-095d-4bda-b0f3-27c3973fde5f" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-6-worker3" - }, - "creation_timestamp": "2024-01-07T16:58:26+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "d3dbe90bc91d926e9d823d7280e370a2fecd2eba", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:26+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:47+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1634", - "self_link": null, - "uid": "d2668641-65db-43f8-a7d0-eb0a77620c92" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-d2668641-65db-43f8-a7d0-eb0a77620c92" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-6-worker" - }, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0fddda3585fad0f9c6a7f0bb1ec5de7c381fd4db", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1437", - "self_link": null, - "uid": "f7e9a57d-e4c1-4c5a-956f-7bca4fedf11d" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-f7e9a57d-e4c1-4c5a-956f-7bca4fedf11d" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-6-worker2" - }, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "d811acfcd783846cd59aa2fb43a21ac742969413", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:31+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:52+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1653", - "self_link": null, - "uid": "1f22173f-f440-4e83-930e-7cbb50c958e6" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-1f22173f-f440-4e83-930e-7cbb50c958e6" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:33+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ce14d2d9-ee80-449b-8369-3c7ce42387a2\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:33+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:57+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - } - ], - "resource_version": "1624", - "self_link": null, - "uid": "939c96cf-b70c-4a0d-a43a-abd6498b5902" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:58:44+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1139", - "self_link": null, - "uid": "53ea14e3-fd60-4696-aabf-f186b22b1efc" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-8r7sz": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5r\nKvzV5TKuciTXtobeJbZ5Q3rIl761vlazxI8uk60HqhTS0wtc1l3hWC42weOOiX5C\n5XFEBgICgOwVWStVaKnW1unewXb7tONS3ViR3Vk1QEz4iyICz9e8R4uY61SXQ022\ndNglzBmwImRPZ3P/q5YJRRjLrwXs1N+SjdhxxYGn7HuLPw+wJKeWrneiUQpj6dfj\nwADb1mM1fdwpv+hxfLKPZBiymDa/q2iYmZULY8gps/XQ29VmkGCdvBbWHj6m3Diu\niG2CdmlHZVJF9v6LBgN+eDWr+7sJY50CLxHJm2/6QnH0pgQyE1fvxPfwwKcFaekj\nZIzmJyWGnlwiFsDIu38CAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFA0VmnQe6AXEl7iT7V4BggvvV/G1MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAG93rCzOfZ6NG/wBROfi\nufzFLBJpwXeRE8ZWEs8BfJJD9BFm1SDMH/u/3YhC71e/ALKC6Oe1YSHFCIRQMr/3\nl2+CXNivNlU3/J+toUW7R9+SaRSRnLVh1ttKjRtM3GjBrtPqWlOlDt8qpCXwray3\ng8aByHz3nUJFmTCwdKM0SLWkCz5X26XEAdkUktyMFNoVZ9D2iBccCOFx6J2z7ijc\n1rw3fSRGuB7QHxVkYVKhdBv8pjmYwzi5Nkf4TbmwLvkoniXJz5qQU22qbBRTvFO9\nqPCH/ZPbRs+bEZdA9vNT5gBrmXYNb9SYReQTgDJn0rLzb4mx1Ru4CxpBbMs92NSW\nt5I=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IlQ2dk1WbXRwSnRHemFoMVh3dWFsOE0yMkxiZEtnUDdLWVlmOV9iWTJGU1kifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi04cjdzeiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiNjUxZTA0OWUtMDc2My00NDFjLTk0YmQtNGJjOTQ3MGFhNDMwIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.CaSCseSoAAXCZx7jY2xaN5H68nDvsdxDtIt98E44gc2gxBZqEYcApJFuVW-1ROz4zOi5vChUr0i8vzvp5hTXHwapYIAJgD5AwvTF2qbcx57t0h0ZJEwkxS-XHSfJJP_C1NyoNgSjLa_hGZdTsSlmkgHN0THzeae9UOj-D0Nu399NNQ4IFp6rEdFCm4B0J8Dx4SqUDi-MBiiQ8JdyQckS3QzR3bLDiEhzyxKmA8GLEwm2RN6me_IwFInPKFPMQvEuPGqqI8nqZxixgajfsATx3JFM4QiNQf0XV3a959l-tWHe8Up6GcNpFWP_MCTobgwVvPtVqlQIcea9VKtyNaPKrw" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "651e049e-0763-441c-94bd-4bc9470aa430" - }, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "clickhouse-operator-token-8r7sz", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1129", - "self_link": null, - "uid": "a3be0ccd-a191-41fa-9818-cf5c10602768" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-b2ppv": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5r\nKvzV5TKuciTXtobeJbZ5Q3rIl761vlazxI8uk60HqhTS0wtc1l3hWC42weOOiX5C\n5XFEBgICgOwVWStVaKnW1unewXb7tONS3ViR3Vk1QEz4iyICz9e8R4uY61SXQ022\ndNglzBmwImRPZ3P/q5YJRRjLrwXs1N+SjdhxxYGn7HuLPw+wJKeWrneiUQpj6dfj\nwADb1mM1fdwpv+hxfLKPZBiymDa/q2iYmZULY8gps/XQ29VmkGCdvBbWHj6m3Diu\niG2CdmlHZVJF9v6LBgN+eDWr+7sJY50CLxHJm2/6QnH0pgQyE1fvxPfwwKcFaekj\nZIzmJyWGnlwiFsDIu38CAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFA0VmnQe6AXEl7iT7V4BggvvV/G1MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBAG93rCzOfZ6NG/wBROfi\nufzFLBJpwXeRE8ZWEs8BfJJD9BFm1SDMH/u/3YhC71e/ALKC6Oe1YSHFCIRQMr/3\nl2+CXNivNlU3/J+toUW7R9+SaRSRnLVh1ttKjRtM3GjBrtPqWlOlDt8qpCXwray3\ng8aByHz3nUJFmTCwdKM0SLWkCz5X26XEAdkUktyMFNoVZ9D2iBccCOFx6J2z7ijc\n1rw3fSRGuB7QHxVkYVKhdBv8pjmYwzi5Nkf4TbmwLvkoniXJz5qQU22qbBRTvFO9\nqPCH/ZPbRs+bEZdA9vNT5gBrmXYNb9SYReQTgDJn0rLzb4mx1Ru4CxpBbMs92NSW\nt5I=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IlQ2dk1WbXRwSnRHemFoMVh3dWFsOE0yMkxiZEtnUDdLWVlmOV9iWTJGU1kifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi1iMnBwdiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiZDRhZDQ5ZWMtOWJlOC00ZjdhLTllYzItZDcxNzJiMGZlYzNjIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.ioqbkem86Bg9-A-jMdW76fErO4RsYHJ28_bpHT9-jUJXjkyVtPY1sG9sR3f5R3CY5i-uzvO8wLj2gJJM_Q-nQRZkrQ0RGIvdPOOokJ2iXfbbjFHoWNu6wAucyKOKwinIbzi88OEJc9B412dJpVuW0FNwf8BC3h4g2HB9SIMcKDabZtrbTQtOGCHGukHi0EfST-ApjMdx7BF8Y_sVV0gCxAwLGoRzI4vRVCQo5ZBki45DuitF7bcZXXbjgn6YIS-ANQl18tidEEjEOobx7m-DeICLjwExP2c0J6KQsCZ_JVm91JXzSNWtBtJZievTmTMsqjfKwQ7uzmRLp6x6VKzWPA" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "d4ad49ec-9be8-4f7a-9ec2-d7172b0fec3c" - }, - "creation_timestamp": "2024-01-07T16:53:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:53:59+00:00" - } - ], - "name": "default-token-b2ppv", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "707", - "self_link": null, - "uid": "5f8c25c4-7256-474c-b05b-993b16d191c9" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:02+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "56e352341539652776caaf9f2bb183ed81d75556", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:12+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1464", - "self_link": null, - "uid": "6bad21c7-ed4a-4ee1-9a2d-4ca4ce1d16b8" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-6-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1461", - "uid": "c3ab0539-528e-44ac-8b00-afbc74389e1a" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:48+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "dcb6968d24d4310f0f138c005530b265c6ff3c2d", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:53+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1663", - "self_link": null, - "uid": "95feb2db-b329-473c-aa4c-5807bc30d7c1" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-6-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1654", - "uid": "2c31893a-3229-4043-9118-8a9eb82676bb" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:07+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "d59f70dc7749d7feedf4631e9fafceb87f836fd5", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:16+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1480", - "self_link": null, - "uid": "1a34b6ab-01dd-43ae-bb39-2ae66f4a7552" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-6-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1477", - "uid": "97b3a18b-9c38-4f29-af95-b5811b12aea8" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:53+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "7a24bd41b7b57887122a7f985b5e2197997c2382", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:01+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1691", - "self_link": null, - "uid": "6aa53fe3-f7eb-4b99-9adf-cebe575ad749" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.3.7", - "node_name": "acto-0-cluster-6-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1686", - "uid": "dd40fa83-20ae-4a15-877f-362a7bf32230" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:03+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1217", - "self_link": null, - "uid": "6ffcbc8e-cbb6-474d-b208-674215249303" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-6-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-tvmvt", - "namespace": "acto-clickhouse", - "resource_version": "1206", - "uid": "f34b60db-0f09-4add-842c-aaafa8962900" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:58:44Z" - }, - "creation_timestamp": "2024-01-07T16:58:17+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "320174e91e4e2fb173124df408729b11513d1200" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:17+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1687", - "self_link": null, - "uid": "34a008a0-2b46-45f0-acb5-05e4cd297811" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-6-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1654", - "uid": "2c31893a-3229-4043-9118-8a9eb82676bb" - } - }, - { - "hostname": null, - "ip": "10.244.2.5", - "node_name": "acto-0-cluster-6-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1477", - "uid": "97b3a18b-9c38-4f29-af95-b5811b12aea8" - } - }, - { - "hostname": null, - "ip": "10.244.3.5", - "node_name": "acto-0-cluster-6-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1461", - "uid": "c3ab0539-528e-44ac-8b00-afbc74389e1a" - } - }, - { - "hostname": null, - "ip": "10.244.3.7", - "node_name": "acto-0-cluster-6-worker2", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1686", - "uid": "dd40fa83-20ae-4a15-877f-362a7bf32230" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:56:56+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-8r7sz\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:56:56+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1132", - "self_link": null, - "uid": "651e049e-0763-441c-94bd-4bc9470aa430" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-8r7sz", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:53:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "708", - "self_link": null, - "uid": "d4ad49ec-9be8-4f7a-9ec2-d7172b0fec3c" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-b2ppv", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: 95609376-5a04-4424-be1c-37dd04229b99", - "actions": [ - "2024-01-07T16:59:14.141279676Z reconcile completed successfully, task id: 95609376-5a04-4424-be1c-37dd04229b99", - "2024-01-07T16:57:29.832819898Z reconcile started, task id: 95609376-5a04-4424-be1c-37dd04229b99" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.1.8", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:29Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1721", - "uid": "ce14d2d9-ee80-449b-8369-3c7ce42387a2" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.1.8" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.3.5", - "10.244.1.10", - "10.244.2.5", - "10.244.3.7" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "44bda3e1-27cc-4e28-b293-47a321c0a01e", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.3.5", - "10.244.1.10", - "10.244.2.5", - "10.244.3.7" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "44bda3e1-27cc-4e28-b293-47a321c0a01e", - "taskIDsCompleted": [ - "44bda3e1-27cc-4e28-b293-47a321c0a01e" - ], - "taskIDsStarted": [ - "95609376-5a04-4424-be1c-37dd04229b99" - ] - } -} \ No newline at end of file diff --git a/clickhouse-result/trial-07-0000/mutated-000.yaml b/clickhouse-result/trial-07-0000/mutated-000.yaml deleted file mode 100644 index 2c62b08bb6..0000000000 --- a/clickhouse-result/trial-07-0000/mutated-000.yaml +++ /dev/null @@ -1,33 +0,0 @@ -apiVersion: clickhouse.altinity.com/v1 -kind: ClickHouseInstallation -metadata: - name: test-cluster -spec: - configuration: - clusters: - - layout: - replicasCount: 2 - shardsCount: 2 - name: replicated - zookeeper: - nodes: - - host: zookeeper.zoo3.ns - defaults: - templates: - dataVolumeClaimTemplate: default - podTemplate: clickhouse:19.6 - templates: - podTemplates: - - name: clickhouse:19.6 - spec: - containers: - - image: clickhouse/clickhouse-server:22.3 - name: clickhouse-pod - volumeClaimTemplates: - - name: default - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 500Mi diff --git a/clickhouse-result/trial-07-0000/system-state-000.json b/clickhouse-result/trial-07-0000/system-state-000.json deleted file mode 100644 index b6c276ca9c..0000000000 --- a/clickhouse-result/trial-07-0000/system-state-000.json +++ /dev/null @@ -1,11653 +0,0 @@ -{ - "pod": { - "chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-0-59f6c44c8", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"f99f907b-784b-45c9-880e-08f9c52c46da\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:45+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.8\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:01+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-0", - "uid": "f99f907b-784b-45c9-880e-08f9c52c46da" - } - ], - "resource_version": "1493", - "self_link": null, - "uid": "4000c494-52d4-4a5d-994d-80e18cab4278" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-fhq45", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-7-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-fhq45", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:01+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:01+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://aa2ec3b9ca191f2bf7edabb6109b0db5516eaca2c120b92dcb8a6b8005790292", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:51+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.10", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.8", - "pod_i_ps": [ - { - "ip": "10.244.1.8" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:49+00:00" - } - }, - "chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-0-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "controller-revision-hash": "chi-test-cluster-replicated-0-1-587c79454c", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-0-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:32+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"49cb4d79-3471-434a-8bc2-c9ddc753cddc\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:32+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.12\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:49+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-0-1", - "uid": "49cb4d79-3471-434a-8bc2-c9ddc753cddc" - } - ], - "resource_version": "1705", - "self_link": null, - "uid": "77406a5e-0777-4cde-865a-503e70df4dbd" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-mqwrk", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-0-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-7-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-0-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-0-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-mqwrk", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:37+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:37+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://315429c4e20563ae7476e46625a9fd061d64f9ff210d634ac7fe52ab11f345eb", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:37+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.10", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.12", - "pod_i_ps": [ - { - "ip": "10.244.1.12" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:37+00:00" - } - }, - "chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-0-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-0-58855bb775", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-0-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"ec3a8742-72b9-4ce4-8303-4393adb7deb4\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:45+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.7\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:01+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-0", - "uid": "ec3a8742-72b9-4ce4-8303-4393adb7deb4" - } - ], - "resource_version": "1475", - "self_link": null, - "uid": "4d37d2c6-4377-4026-ae25-25bfff73bd76" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-jp88p", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-0-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-7-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-0", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-0-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-jp88p", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:01+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:01+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:49+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://31568c235212c70880058acbc1ef1d9ada8d207e56b3d0f36f08583075ab9d76", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:51+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.10", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.7", - "pod_i_ps": [ - { - "ip": "10.244.1.7" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:49+00:00" - } - }, - "chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "chi-test-cluster-replicated-1-1-", - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "controller-revision-hash": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "statefulset.kubernetes.io/pod-name": "chi-test-cluster-replicated-1-1-0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:controller-revision-hash": {}, - "f:statefulset.kubernetes.io/pod-name": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"b2bb3946-fc2d-4cda-bd19-1c7b27862f74\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:hostname": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:subdomain": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"default\"}": { - ".": {}, - "f:name": {}, - "f:persistentVolumeClaim": { - ".": {}, - "f:claimName": {} - } - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/ready": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:28+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:containerStatuses": {}, - "f:hostIP": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.1.10\"}": { - ".": {}, - "f:ip": {} - } - }, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "StatefulSet", - "name": "chi-test-cluster-replicated-1-1", - "uid": "b2bb3946-fc2d-4cda-bd19-1c7b27862f74" - } - ], - "resource_version": "1667", - "self_link": null, - "uid": "29ab374e-fc4f-4c9b-9a96-85d148140ada" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-bw2fj", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": "chi-test-cluster-replicated-1-1-0", - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-7-worker", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "default", - "service_account_name": "default", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": "chi-test-cluster-replicated-1-1", - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "default", - "nfs": null, - "persistent_volume_claim": { - "claim_name": "default-chi-test-cluster-replicated-1-1-0", - "read_only": null - }, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-bw2fj", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:31+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:43+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:58:31+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://75d7f583072d2c6de3688cffa6f8317db79e476ea45165c90b7c5e3c6aefdc46", - "image": "docker.io/clickhouse/clickhouse-server:22.3", - "image_id": "docker.io/library/import-2024-01-07@sha256:a1ec67852e2855d225e1170b8f1190313355dc42b61a1403df38b67f1987f260", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-pod", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:58:32+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.10", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.1.10", - "pod_i_ps": [ - { - "ip": "10.244.1.10" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:58:31+00:00" - } - } - }, - "deployment_pods": { - "clickhouse-operator": [ - { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": "2024-01-07T16:57:06+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": "clickhouse-operator-8697784fc9-", - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52", - "pod-template-hash": "8697784fc9" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:generateName": {}, - "f:labels": { - ".": {}, - "f:acto/tag": {}, - "f:app": {}, - "f:pod-template-hash": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"8ffc13bc-26f8-4506-9155-19fc41f29263\"}": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - ".": {}, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - ".": {}, - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:enableServiceLinks": {}, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:serviceAccount": {}, - "f:serviceAccountName": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - }, - "k:{\"type\":\"Initialized\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:lastTransitionTime": {}, - "f:status": {}, - "f:type": {} - }, - "k:{\"type\":\"Ready\"}": { - ".": {}, - "f:lastProbeTime": {}, - "f:type": {} - } - }, - "f:hostIP": {}, - "f:startTime": {} - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:07+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - "k:{\"type\":\"ContainersReady\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - }, - "k:{\"type\":\"Ready\"}": { - "f:lastTransitionTime": {}, - "f:status": {} - } - }, - "f:containerStatuses": {}, - "f:phase": {}, - "f:podIP": {}, - "f:podIPs": { - ".": {}, - "k:{\"ip\":\"10.244.2.4\"}": { - ".": {}, - "f:ip": {} - } - } - } - }, - "manager": "kubelet", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "clickhouse-operator-8697784fc9-xlwb2", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "apps/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ReplicaSet", - "name": "clickhouse-operator-8697784fc9", - "uid": "8ffc13bc-26f8-4506-9155-19fc41f29263" - } - ], - "resource_version": "1224", - "self_link": null, - "uid": "ce5f0a9c-df77-46fc-81b2-cd43f5235115" - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-mxzwk", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/run/secrets/kubernetes.io/serviceaccount", - "mount_propagation": null, - "name": "kube-api-access-mxzwk", - "read_only": true, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": true, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": "acto-0-cluster-7-worker3", - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": "PreemptLowerPriority", - "priority": 0, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": [ - { - "effect": "NoExecute", - "key": "node.kubernetes.io/not-ready", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - }, - { - "effect": "NoExecute", - "key": "node.kubernetes.io/unreachable", - "operator": "Exists", - "toleration_seconds": 300, - "value": null - } - ], - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": null, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "kube-api-access-mxzwk", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": { - "default_mode": 420, - "sources": [ - { - "config_map": null, - "downward_api": null, - "secret": null, - "service_account_token": { - "audience": null, - "expiration_seconds": 3607, - "path": "token" - } - }, - { - "config_map": { - "items": [ - { - "key": "ca.crt", - "mode": null, - "path": "ca.crt" - } - ], - "name": "kube-root-ca.crt", - "optional": null - }, - "downward_api": null, - "secret": null, - "service_account_token": null - }, - { - "config_map": null, - "downward_api": { - "items": [ - { - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "mode": null, - "path": "namespace", - "resource_field_ref": null - } - ] - }, - "secret": null, - "service_account_token": null - } - ] - }, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - }, - "status": { - "conditions": [ - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Initialized" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "Ready" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:08+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "ContainersReady" - }, - { - "last_probe_time": null, - "last_transition_time": "2024-01-07T16:57:06+00:00", - "message": null, - "reason": null, - "status": "True", - "type": "PodScheduled" - } - ], - "container_statuses": [ - { - "container_id": "containerd://a935c32e021eb0dac3b3c04967dd266bd37772e2e2a144050308e49ff8def192", - "image": "docker.io/altinity/clickhouse-operator:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:0e3422d58b8971cdbc64f570ca76e0e7bac90df91c8f68392e7db708d1fd92e1", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "clickhouse-operator", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:07+00:00" - }, - "terminated": null, - "waiting": null - } - }, - { - "container_id": "containerd://5d8be77d90f062f5cb9b111a86866438c458f6310058ffd9c1545a6f01de9f50", - "image": "docker.io/altinity/metrics-exporter:0.22.2", - "image_id": "docker.io/library/import-2024-01-07@sha256:24c8251ac12fb5098d8ee2f8edd48546bb020fdd9eca9be2a9b98eca27fe9844", - "last_state": { - "running": null, - "terminated": null, - "waiting": null - }, - "name": "metrics-exporter", - "ready": true, - "restart_count": 0, - "started": true, - "state": { - "running": { - "started_at": "2024-01-07T16:57:07+00:00" - }, - "terminated": null, - "waiting": null - } - } - ], - "ephemeral_container_statuses": null, - "host_ip": "172.18.0.11", - "init_container_statuses": null, - "message": null, - "nominated_node_name": null, - "phase": "Running", - "pod_ip": "10.244.2.4", - "pod_i_ps": [ - { - "ip": "10.244.2.4" - } - ], - "qos_class": "BestEffort", - "reason": null, - "start_time": "2024-01-07T16:57:06+00:00" - } - } - ] - }, - "daemonset_pods": {}, - "stateful_set": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0e8c96caa5bc9e74fbb52c7e56b9aa92ad582793", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:01+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1425", - "self_link": null, - "uid": "f99f907b-784b-45c9-880e-08f9c52c46da" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-0-59f6c44c8", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "3b16a53628e1eb205c33d48a8bb5286165855389", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-0-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:32+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:49+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1642", - "self_link": null, - "uid": "49cb4d79-3471-434a-8bc2-c9ddc753cddc" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - } - }, - "service_name": "chi-test-cluster-replicated-0-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-0-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-0-1-587c79454c", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0219e5614558e0528783f4f2f93c3256380d7792", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-0\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:01+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1422", - "self_link": null, - "uid": "ec3a8742-72b9-4ce4-8303-4393adb7deb4" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-0", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-0" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-0-58855bb775", - "updated_replicas": 1 - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "4fbfa4a7fa0f2b9a8336443cbf4e10a4c40f88f7", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:podManagementPolicy": {}, - "f:replicas": {}, - "f:revisionHistoryLimit": {}, - "f:selector": {}, - "f:serviceName": {}, - "f:template": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/ready": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:name": {} - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-pod\"}": { - ".": {}, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:livenessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:name": {}, - "f:ports": { - ".": {}, - "k:{\"containerPort\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - }, - "k:{\"containerPort\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {}, - "f:protocol": {} - } - }, - "f:readinessProbe": { - ".": {}, - "f:failureThreshold": {}, - "f:httpGet": { - ".": {}, - "f:path": {}, - "f:port": {}, - "f:scheme": {} - }, - "f:initialDelaySeconds": {}, - "f:periodSeconds": {}, - "f:successThreshold": {}, - "f:timeoutSeconds": {} - }, - "f:resources": {}, - "f:terminationMessagePath": {}, - "f:terminationMessagePolicy": {}, - "f:volumeMounts": { - ".": {}, - "k:{\"mountPath\":\"/etc/clickhouse-server/conf.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/config.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-server/users.d/\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/var/lib/clickhouse\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:dnsPolicy": {}, - "f:hostAliases": { - ".": {}, - "k:{\"ip\":\"127.0.0.1\"}": { - ".": {}, - "f:hostnames": {}, - "f:ip": {} - } - }, - "f:restartPolicy": {}, - "f:schedulerName": {}, - "f:securityContext": {}, - "f:terminationGracePeriodSeconds": {}, - "f:volumes": { - ".": {}, - "k:{\"name\":\"chi-test-cluster-common-configd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-common-usersd\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"chi-test-cluster-deploy-confd-replicated-1-1\"}": { - ".": {}, - "f:configMap": { - ".": {}, - "f:defaultMode": {}, - "f:name": {} - }, - "f:name": {} - } - } - } - }, - "f:updateStrategy": { - "f:type": {} - }, - "f:volumeClaimTemplates": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:collisionCount": {}, - "f:currentReplicas": {}, - "f:currentRevision": {}, - "f:observedGeneration": {}, - "f:readyReplicas": {}, - "f:replicas": {}, - "f:updateRevision": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:43+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1626", - "self_link": null, - "uid": "b2bb3946-fc2d-4cda-bd19-1c7b27862f74" - }, - "spec": { - "min_ready_seconds": null, - "ordinals": null, - "persistent_volume_claim_retention_policy": null, - "pod_management_policy": "OrderedReady", - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - } - }, - "service_name": "chi-test-cluster-replicated-1-1", - "template": { - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "clickhouse:19.6", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": null, - "env_from": null, - "image": "clickhouse/clickhouse-server:22.3", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": { - "_exec": null, - "failure_threshold": 10, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 60, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "name": "clickhouse-pod", - "ports": [ - { - "container_port": 9000, - "host_ip": null, - "host_port": null, - "name": "tcp", - "protocol": "TCP" - }, - { - "container_port": 8123, - "host_ip": null, - "host_port": null, - "name": "http", - "protocol": "TCP" - }, - { - "container_port": 9009, - "host_ip": null, - "host_port": null, - "name": "interserver", - "protocol": "TCP" - } - ], - "readiness_probe": { - "_exec": null, - "failure_threshold": 3, - "grpc": null, - "http_get": { - "host": null, - "http_headers": null, - "path": "/ping", - "port": "http", - "scheme": "HTTP" - }, - "initial_delay_seconds": 10, - "period_seconds": 3, - "success_threshold": 1, - "tcp_socket": null, - "termination_grace_period_seconds": null, - "timeout_seconds": 1 - }, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-server/config.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-configd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/users.d/", - "mount_propagation": null, - "name": "chi-test-cluster-common-usersd", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-server/conf.d/", - "mount_propagation": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/var/lib/clickhouse", - "mount_propagation": null, - "name": "default", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": [ - { - "hostnames": [ - "chi-test-cluster-replicated-1-1" - ], - "ip": "127.0.0.1" - } - ], - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": null, - "service_account_name": null, - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-configd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-configd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-common-usersd", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-common-usersd", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - }, - "update_strategy": { - "rolling_update": null, - "type": "RollingUpdate" - }, - "volume_claim_templates": [ - { - "api_version": "v1", - "kind": "PersistentVolumeClaim", - "metadata": { - "annotations": null, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": null, - "name": "default", - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": null, - "volume_mode": "Filesystem", - "volume_name": null - }, - "status": { - "access_modes": null, - "allocated_resources": null, - "capacity": null, - "conditions": null, - "phase": "Pending", - "resize_status": null - } - } - ] - }, - "status": { - "available_replicas": 1, - "collision_count": 0, - "conditions": null, - "current_replicas": 1, - "current_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "observed_generation": 1, - "ready_replicas": 1, - "replicas": 1, - "update_revision": "chi-test-cluster-replicated-1-1-68bf4c66fd", - "updated_replicas": 1 - } - } - }, - "deployment": { - "clickhouse-operator": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "deployment.kubernetes.io/revision": "2" - }, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 2, - "labels": { - "acto/tag": "operator-deployment", - "app": "clickhouse-operator", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chop": "0.22.2", - "clickhouse.altinity.com/chop-commit": "aea62db", - "clickhouse.altinity.com/chop-date": "2023-12-14T12.01.52" - }, - "managed_fields": [ - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:replicas": {}, - "f:selector": {}, - "f:template": { - "f:metadata": { - "f:annotations": { - "f:clickhouse-operator-metrics/port": {}, - "f:clickhouse-operator-metrics/scrape": {}, - "f:prometheus.io/port": {}, - "f:prometheus.io/scrape": {} - }, - "f:labels": { - "f:app": {} - } - }, - "f:spec": { - "f:containers": { - "k:{\"name\":\"clickhouse-operator\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - }, - "k:{\"name\":\"metrics-exporter\"}": { - ".": {}, - "f:env": { - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_CPU_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_LIMIT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_CONTAINER_MEM_REQUEST\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:resourceFieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_IP\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NAMESPACE\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_NODE_NAME\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - }, - "k:{\"name\":\"OPERATOR_POD_SERVICE_ACCOUNT\"}": { - ".": {}, - "f:name": {}, - "f:valueFrom": { - "f:fieldRef": {} - } - } - }, - "f:image": {}, - "f:imagePullPolicy": {}, - "f:name": {}, - "f:ports": { - "k:{\"containerPort\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:containerPort": {}, - "f:name": {} - } - }, - "f:volumeMounts": { - "k:{\"mountPath\":\"/etc/clickhouse-operator\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/conf.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/config.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/templates.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - }, - "k:{\"mountPath\":\"/etc/clickhouse-operator/users.d\"}": { - ".": {}, - "f:mountPath": {}, - "f:name": {} - } - } - } - }, - "f:serviceAccountName": {}, - "f:volumes": { - "k:{\"name\":\"etc-clickhouse-operator-confd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-configd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-templatesd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - }, - "k:{\"name\":\"etc-clickhouse-operator-usersd-folder\"}": { - ".": {}, - "f:configMap": { - "f:name": {} - }, - "f:name": {} - } - } - } - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chop-commit": {}, - "f:clickhouse.altinity.com/chop-date": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:02+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - }, - "f:spec": { - "f:template": { - "f:metadata": { - "f:labels": { - "f:acto/tag": {} - } - } - } - } - }, - "manager": "OpenAPI-Generator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - "f:deployment.kubernetes.io/revision": {} - } - }, - "f:status": { - "f:observedGeneration": {}, - "f:updatedReplicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:06+00:00" - }, - { - "api_version": "apps/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:availableReplicas": {}, - "f:conditions": { - "k:{\"type\":\"Progressing\"}": { - "f:lastUpdateTime": {}, - "f:message": {}, - "f:reason": {} - } - }, - "f:readyReplicas": {}, - "f:replicas": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1239", - "self_link": null, - "uid": "841d19cb-5398-47f0-8eb1-b81a3f24bae6" - }, - "spec": { - "min_ready_seconds": null, - "paused": null, - "progress_deadline_seconds": 600, - "replicas": 1, - "revision_history_limit": 10, - "selector": { - "match_expressions": null, - "match_labels": { - "app": "clickhouse-operator" - } - }, - "strategy": { - "rolling_update": { - "max_surge": "25%", - "max_unavailable": "25%" - }, - "type": "RollingUpdate" - }, - "template": { - "metadata": { - "annotations": { - "clickhouse-operator-metrics/port": "9999", - "clickhouse-operator-metrics/scrape": "true", - "prometheus.io/port": "8888", - "prometheus.io/scrape": "true" - }, - "creation_timestamp": null, - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "acto/tag": "operator-pod", - "app": "clickhouse-operator" - }, - "managed_fields": null, - "name": null, - "namespace": null, - "owner_references": null, - "resource_version": null, - "self_link": null, - "uid": null - }, - "spec": { - "active_deadline_seconds": null, - "affinity": null, - "automount_service_account_token": null, - "containers": [ - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/clickhouse-operator:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "clickhouse-operator", - "ports": [ - { - "container_port": 9999, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - }, - { - "args": null, - "command": null, - "env": [ - { - "name": "OPERATOR_POD_NODE_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.nodeName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAME", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.name" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_NAMESPACE", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "metadata.namespace" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_IP", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "status.podIP" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_POD_SERVICE_ACCOUNT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": { - "api_version": "v1", - "field_path": "spec.serviceAccountName" - }, - "resource_field_ref": null, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_CPU_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.cpu" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_REQUEST", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "requests.memory" - }, - "secret_key_ref": null - } - }, - { - "name": "OPERATOR_CONTAINER_MEM_LIMIT", - "value": null, - "value_from": { - "config_map_key_ref": null, - "field_ref": null, - "resource_field_ref": { - "container_name": "clickhouse-operator", - "divisor": "0", - "resource": "limits.memory" - }, - "secret_key_ref": null - } - } - ], - "env_from": null, - "image": "altinity/metrics-exporter:0.22.2", - "image_pull_policy": "IfNotPresent", - "lifecycle": null, - "liveness_probe": null, - "name": "metrics-exporter", - "ports": [ - { - "container_port": 8888, - "host_ip": null, - "host_port": null, - "name": "metrics", - "protocol": "TCP" - } - ], - "readiness_probe": null, - "resources": { - "claims": null, - "limits": null, - "requests": null - }, - "security_context": null, - "startup_probe": null, - "stdin": null, - "stdin_once": null, - "termination_message_path": "/dev/termination-log", - "termination_message_policy": "File", - "tty": null, - "volume_devices": null, - "volume_mounts": [ - { - "mount_path": "/etc/clickhouse-operator", - "mount_propagation": null, - "name": "etc-clickhouse-operator-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/conf.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-confd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/config.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-configd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/templates.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - }, - { - "mount_path": "/etc/clickhouse-operator/users.d", - "mount_propagation": null, - "name": "etc-clickhouse-operator-usersd-folder", - "read_only": null, - "sub_path": null, - "sub_path_expr": null - } - ], - "working_dir": null - } - ], - "dns_config": null, - "dns_policy": "ClusterFirst", - "enable_service_links": null, - "ephemeral_containers": null, - "host_aliases": null, - "host_ipc": null, - "host_network": null, - "host_pid": null, - "host_users": null, - "hostname": null, - "image_pull_secrets": null, - "init_containers": null, - "node_name": null, - "node_selector": null, - "os": null, - "overhead": null, - "preemption_policy": null, - "priority": null, - "priority_class_name": null, - "readiness_gates": null, - "resource_claims": null, - "restart_policy": "Always", - "runtime_class_name": null, - "scheduler_name": "default-scheduler", - "scheduling_gates": null, - "security_context": { - "fs_group": null, - "fs_group_change_policy": null, - "run_as_group": null, - "run_as_non_root": null, - "run_as_user": null, - "se_linux_options": null, - "seccomp_profile": null, - "supplemental_groups": null, - "sysctls": null, - "windows_options": null - }, - "service_account": "clickhouse-operator", - "service_account_name": "clickhouse-operator", - "set_hostname_as_fqdn": null, - "share_process_namespace": null, - "subdomain": null, - "termination_grace_period_seconds": 30, - "tolerations": null, - "topology_spread_constraints": null, - "volumes": [ - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-confd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-confd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-configd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-configd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-templatesd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-templatesd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - }, - { - "aws_elastic_block_store": null, - "azure_disk": null, - "azure_file": null, - "cephfs": null, - "cinder": null, - "config_map": { - "default_mode": 420, - "items": null, - "name": "etc-clickhouse-operator-usersd-files", - "optional": null - }, - "csi": null, - "downward_api": null, - "empty_dir": null, - "ephemeral": null, - "fc": null, - "flex_volume": null, - "flocker": null, - "gce_persistent_disk": null, - "git_repo": null, - "glusterfs": null, - "host_path": null, - "iscsi": null, - "name": "etc-clickhouse-operator-usersd-folder", - "nfs": null, - "persistent_volume_claim": null, - "photon_persistent_disk": null, - "portworx_volume": null, - "projected": null, - "quobyte": null, - "rbd": null, - "scale_io": null, - "secret": null, - "storageos": null, - "vsphere_volume": null - } - ] - } - } - }, - "status": { - "available_replicas": 1, - "collision_count": null, - "conditions": [ - { - "last_transition_time": "2024-01-07T16:57:02+00:00", - "last_update_time": "2024-01-07T16:57:02+00:00", - "message": "Deployment has minimum availability.", - "reason": "MinimumReplicasAvailable", - "status": "True", - "type": "Available" - }, - { - "last_transition_time": "2024-01-07T16:57:01+00:00", - "last_update_time": "2024-01-07T16:57:08+00:00", - "message": "ReplicaSet \"clickhouse-operator-8697784fc9\" has successfully progressed.", - "reason": "NewReplicaSetAvailable", - "status": "True", - "type": "Progressing" - } - ], - "observed_generation": 2, - "ready_replicas": 1, - "replicas": 1, - "unavailable_replicas": null, - "updated_replicas": 1 - } - } - }, - "daemon_set": {}, - "config_map": { - "chi-test-cluster-common-configd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "chop-generated-remote_servers.xml": "\n \n \n \n \n True\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n True\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n \n true\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n \n false\n \n chi-test-cluster-replicated-0-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-0-1\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-0\n 9000\n 0\n \n \n \n false\n \n chi-test-cluster-replicated-1-1\n 9000\n 0\n \n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:35+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommon", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "fe8eec230e85137676b6482e974ac7289ed561df" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {}, - "f:chop-generated-remote_servers.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:35+00:00" - } - ], - "name": "chi-test-cluster-common-configd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1698", - "self_link": null, - "uid": "13b47d0a-f352-4e3d-90af-9f23c614d847" - } - }, - "chi-test-cluster-common-usersd": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n", - "chop-generated-users.xml": "\n \n \n \n 10.244.2.4\n \n 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448\n clickhouse_operator\n \n \n \n (chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$\n ::1\n 127.0.0.1\n 10.244.1.8\n 10.244.1.12\n 10.244.1.7\n 10.244.1.10\n \n default\n default\n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:37+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "ChiCommonUsers", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "ab830ab78dc285afad80ceaa45fbe8b84f3b2c4c" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {}, - "f:chop-generated-users.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:37+00:00" - } - ], - "name": "chi-test-cluster-common-usersd", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1685", - "self_link": null, - "uid": "981fc588-43e2-46bc-a35c-f43ecbef82fe" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 0\n replicated\n 0\n chi-test-cluster-replicated-0-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "e260718155a6d011221ad6e993b41f7c0010dbaa", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1312", - "self_link": null, - "uid": "c189b8ec-63fe-4e43-8bdc-e4cf26571725" - } - }, - "chi-test-cluster-deploy-confd-replicated-0-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-0-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 1\n replicated\n 0\n chi-test-cluster-replicated-0-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:29+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0c2e3bb30a0821e4c48c01f073b6862585669600", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:29+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1550", - "self_link": null, - "uid": "b40edb34-0f11-4242-9aac-bd56e61a70af" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-0": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-0\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 2\n replicated\n 1\n chi-test-cluster-replicated-1-0\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:40+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "e2270fd98209dff901e9598b39feb299d5a7e572", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:40+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1311", - "self_link": null, - "uid": "48855fc5-ea3e-4914-90c5-0667199e9850" - } - }, - "chi-test-cluster-deploy-confd-replicated-1-1": { - "api_version": null, - "binary_data": null, - "data": { - "chop-generated-hostname-ports.xml": "\n 0\n 0\n chi-test-cluster-replicated-1-1\n\n", - "chop-generated-macros.xml": "\n \n test-cluster\n 3\n replicated\n 1\n chi-test-cluster-replicated-1-1\n \n\n", - "chop-generated-zookeeper.xml": "\n \n \n zookeeper.zoo3.ns\n 2181\n \n \n \n /clickhouse/test-cluster/task_queue/ddl\n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:23+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/ConfigMap": "Host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "e8c3bc6cf204eff73bdaef7b07199c34bf7db7da", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:chop-generated-hostname-ports.xml": {}, - "f:chop-generated-macros.xml": {}, - "f:chop-generated-zookeeper.xml": {} - }, - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/ConfigMap": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:23+00:00" - } - ], - "name": "chi-test-cluster-deploy-confd-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1503", - "self_link": null, - "uid": "7bc55fe6-d7cc-42fc-af20-24b3871ec0e5" - } - }, - "etc-clickhouse-operator-confd-files": { - "api_version": null, - "binary_data": null, - "data": null, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": {}, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "etc-clickhouse-operator-confd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1146", - "self_link": null, - "uid": "5f5bda28-1672-47c9-809b-9cac399e6711" - } - }, - "etc-clickhouse-operator-configd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-01-listen.xml": "\n\n\n\n\n\n\n \n ::\n 0.0.0.0\n 1\n\n", - "01-clickhouse-02-logger.xml": "\n\n\n\n\n\n\n \n \n debug\n /var/log/clickhouse-server/clickhouse-server.log\n /var/log/clickhouse-server/clickhouse-server.err.log\n 1000M\n 10\n \n 1\n \n\n", - "01-clickhouse-03-query_log.xml": "\n\n\n\n\n\n\n \n system\n query_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n \n
\n", - "01-clickhouse-04-part_log.xml": "\n\n\n\n\n\n\n \n system\n part_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n", - "01-clickhouse-05-trace_log.xml": "\n\n\n\n\n\n\n \n system\n trace_log
\n Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day\n 7500\n
\n
\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-01-listen.xml": {}, - "f:01-clickhouse-02-logger.xml": {}, - "f:01-clickhouse-03-query_log.xml": {}, - "f:01-clickhouse-04-part_log.xml": {}, - "f:01-clickhouse-05-trace_log.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "etc-clickhouse-operator-configd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1148", - "self_link": null, - "uid": "cd0d9791-5814-4c7a-bf43-8e37d87e3288" - } - }, - "etc-clickhouse-operator-files": { - "api_version": null, - "binary_data": null, - "data": { - "config.yaml": "# IMPORTANT\n# This file is auto-generated\n# Do not edit this file - all changes would be lost\n# Edit appropriate template in the following folder:\n# deploy/builder/templates-config\n# IMPORTANT\n#\n# Template parameters available:\n# WATCH_NAMESPACES=\n# CH_USERNAME_PLAIN=\n# CH_PASSWORD_PLAIN=\n# CH_CREDENTIALS_SECRET_NAMESPACE=\n# CH_CREDENTIALS_SECRET_NAME=clickhouse-operator\n\n################################################\n##\n## Watch section\n##\n################################################\nwatch:\n # List of namespaces where clickhouse-operator watches for events.\n # Concurrently running operators should watch on different namespaces.\n # IMPORTANT\n # Regexp is applicable.\n #namespaces: [\"dev\", \"test\"]\n namespaces: []\n\nclickhouse:\n configuration:\n ################################################\n ##\n ## Configuration files section\n ##\n ################################################\n file:\n path:\n # Path to the folder where ClickHouse configuration files common for all instances within a CHI are located.\n common: config.d\n # Path to the folder where ClickHouse configuration files unique for each instance (host) within a CHI are located.\n host: conf.d\n # Path to the folder where ClickHouse configuration files with users' settings are located.\n # Files are common for all instances within a CHI.\n user: users.d\n ################################################\n ##\n ## Configuration users section\n ##\n ################################################\n user:\n # Default settings for user accounts, created by the operator.\n # IMPORTANT. These are not access credentials or settings for 'default' user account,\n # it is a template for filling out missing fields for all user accounts to be created by the operator,\n # with the following EXCEPTIONS:\n # 1. 'default' user account DOES NOT use provided password, but uses all the rest of the fields.\n # Password for 'default' user account has to be provided explicitly, if to be used.\n # 2. CHOP user account DOES NOT use:\n # - profile setting. It uses predefined profile called 'clickhouse_operator'\n # - quota setting. It uses empty quota name.\n # - networks IP setting. Operator specifies 'networks/ip' user setting to match operators' pod IP only.\n # - password setting. Password for CHOP account is used from 'clickhouse.access.*' section\n default:\n # Default values for ClickHouse user account(s) created by the operator\n # 1. user/profile - string\n # 2. user/quota - string\n # 3. user/networks/ip - multiple strings\n # 4. user/password - string\n # These values can be overwritten on per-user basis.\n profile: \"default\"\n quota: \"default\"\n networksIP:\n - \"::1\"\n - \"127.0.0.1\"\n password: \"default\"\n ################################################\n ##\n ## Configuration network section\n ##\n ################################################\n network:\n # Default host_regexp to limit network connectivity from outside\n hostRegexpTemplate: \"(chi-{chi}-[^.]+\\\\d+-\\\\d+|clickhouse\\\\-{chi})\\\\.{namespace}\\\\.svc\\\\.cluster\\\\.local$\"\n\n ################################################\n ##\n ## Configuration restart policy section\n ## Configuration restart policy describes what configuration changes require ClickHouse restart\n ##\n ################################################\n configurationRestartPolicy:\n rules:\n # IMPORTANT!\n # Default version will also be used in case ClickHouse version is unknown.\n # ClickHouse version may be unknown due to host being down - for example, because of incorrect \"settings\" section.\n # ClickHouse is not willing to start in case incorrect/unknown settings are provided in config file.\n - version: \"*\"\n rules:\n - settings/*: \"yes\"\n - settings/dictionaries_config: \"no\"\n - settings/logger: \"no\"\n - settings/macros/*: \"no\"\n - settings/max_server_memory_*: \"no\"\n - settings/max_*_to_drop: \"no\"\n - settings/max_concurrent_queries: \"no\"\n - settings/models_config: \"no\"\n - settings/user_defined_executable_functions_config: \"no\"\n\n - zookeeper/*: \"yes\"\n\n - files/*.xml: \"yes\"\n - files/config.d/*.xml: \"yes\"\n - files/config.d/*dict*.xml: \"no\"\n\n - profiles/default/background_*_pool_size: \"yes\"\n - profiles/default/max_*_for_server: \"yes\"\n - version: \"21.*\"\n rules:\n - settings/logger: \"yes\"\n\n #################################################\n ##\n ## Access to ClickHouse instances\n ##\n ################################################\n access:\n # Possible values for 'scheme' are:\n # 1. http - force http to be used to connect to ClickHouse instances\n # 2. https - force https to be used to connect to ClickHouse instances\n # 3. auto - either http or https is selected based on open ports\n scheme: \"auto\"\n # ClickHouse credentials (username, password and port) to be used by the operator to connect to ClickHouse instances.\n # These credentials are used for:\n # 1. Metrics requests\n # 2. Schema maintenance\n # 3. DROP DNS CACHE\n # User with these credentials can be specified in additional ClickHouse .xml config files,\n # located in 'clickhouse.configuration.file.path.user' folder\n username: \"\"\n password: \"\"\n rootCA: \"\"\n\n # Location of the k8s Secret with username and password to be used by the operator to connect to ClickHouse instances.\n # Can be used instead of explicitly specified username and password available in sections:\n # - clickhouse.access.username\n # - clickhouse.access.password\n # Secret should have two keys:\n # 1. username\n # 2. password\n secret:\n # Empty `namespace` means that k8s secret would be looked in the same namespace where operator's pod is running.\n namespace: \"\"\n # Empty `name` means no k8s Secret would be looked for\n name: \"clickhouse-operator\"\n # Port where to connect to ClickHouse instances to\n port: 8123\n\n # Timeouts used to limit connection and queries from the operator to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timout to setup connection from the operator to ClickHouse instances. In seconds.\n connect: 1\n # Timout to perform SQL query from the operator to ClickHouse instances. In seconds.\n query: 4\n\n #################################################\n ##\n ## Metrics collection\n ##\n ################################################\n\n metrics:\n # Timeouts used to limit connection and queries from the metrics exporter to ClickHouse instances\n # Specified in seconds.\n timeouts:\n # Timeout used to limit metrics collection request. In seconds.\n # Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.\n # All collected metrics are returned.\n collect: 9\n\n################################################\n##\n## Template(s) management section\n##\n################################################\ntemplate:\n chi:\n # CHI template updates handling policy\n # Possible policy values:\n # - ReadOnStart. Accept CHIT updates on the operators start only.\n # - ApplyOnNextReconcile. Accept CHIT updates at all time. Apply news CHITs on next regular reconcile of the CHI\n policy: ApplyOnNextReconcile\n\n # Path to the folder where ClickHouseInstallation templates .yaml manifests are located.\n # Templates are added to the list of all templates and used when CHI is reconciled.\n # Templates are applied in sorted alpha-numeric order.\n path: templates.d\n\n################################################\n##\n## Reconcile section\n##\n################################################\nreconcile:\n # Reconcile runtime settings\n runtime:\n # Max number of concurrent CHI reconciles in progress\n reconcileCHIsThreadsNumber: 10\n\n # The operator reconciles shards concurrently in each CHI with the following limitations:\n # 1. Number of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsThreadsNumber'.\n # 2. Percentage of shards being reconciled (and thus having hosts down) in each CHI concurrently\n # can not be greater than 'reconcileShardsMaxConcurrencyPercent'.\n # 3. The first shard is always reconciled alone. Concurrency starts from the second shard and onward.\n # Thus limiting number of shards being reconciled (and thus having hosts down) in each CHI by both number and percentage\n\n # Max number of concurrent shard reconciles within one CHI in progress\n reconcileShardsThreadsNumber: 5\n # Max percentage of concurrent shard reconciles within one CHI in progress\n reconcileShardsMaxConcurrencyPercent: 50\n\n # Reconcile StatefulSet scenario\n statefulSet:\n # Create StatefulSet scenario\n create:\n # What to do in case created StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. delete - delete newly created problematic StatefulSet and follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: ignore\n\n # Update StatefulSet scenario\n update:\n # How many seconds to wait for created/updated StatefulSet to be 'Ready'\n timeout: 300\n # How many seconds to wait between checks/polls for created/updated StatefulSet status\n pollInterval: 5\n # What to do in case updated StatefulSet is not in 'Ready' after `reconcile.statefulSet.update.timeout` seconds\n # Possible options:\n # 1. abort - abort the process, do nothing with the problematic StatefulSet, leave it as it is,\n # do not try to fix or delete or update it, just abort reconcile cycle.\n # Do not proceed to the next StatefulSet(s) and wait for an admin to assist.\n # 2. rollback - delete Pod and rollback StatefulSet to previous Generation.\n # Pod would be recreated by StatefulSet based on rollback-ed StatefulSet configuration.\n # Follow 'abort' path afterwards.\n # 3. ignore - ignore an error, pretend nothing happened, continue reconcile and move on to the next StatefulSet.\n onFailure: abort\n\n # Reconcile Host scenario\n host:\n # Whether the operator during reconcile procedure should wait for a ClickHouse host:\n # - to be excluded from a ClickHouse cluster\n # - to complete all running queries\n # - to be included into a ClickHouse cluster\n # respectfully before moving forward\n wait:\n exclude: true\n queries: true\n include: false\n\n################################################\n##\n## Annotations management section\n##\n################################################\nannotation:\n # Applied when:\n # 1. Propagating annotations from the CHI's `metadata.annotations` to child objects' `metadata.annotations`,\n # 2. Propagating annotations from the CHI Template's `metadata.annotations` to CHI's `metadata.annotations`,\n # Include annotations from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude annotations from the following list:\n exclude: []\n\n################################################\n##\n## Labels management section\n##\n################################################\nlabel:\n # Applied when:\n # 1. Propagating labels from the CHI's `metadata.labels` to child objects' `metadata.labels`,\n # 2. Propagating labels from the CHI Template's `metadata.labels` to CHI's `metadata.labels`,\n # Include labels from the following list:\n # Applied only when not empty. Empty list means \"include all, no selection\"\n include: []\n # Exclude labels from the following list:\n # Applied only when not empty. Empty list means \"nothing to exclude, no selection\"\n exclude: []\n # Whether to append *Scope* labels to StatefulSet and Pod.\n # Full list of available *scope* labels check in 'labeler.go'\n # LabelShardScopeIndex\n # LabelReplicaScopeIndex\n # LabelCHIScopeIndex\n # LabelCHIScopeCycleSize\n # LabelCHIScopeCycleIndex\n # LabelCHIScopeCycleOffset\n # LabelClusterScopeIndex\n # LabelClusterScopeCycleSize\n # LabelClusterScopeCycleIndex\n # LabelClusterScopeCycleOffset\n appendScope: \"no\"\n\n################################################\n##\n## StatefulSet management section\n##\n################################################\nstatefulSet:\n revisionHistoryLimit: 0\n\n################################################\n##\n## Pod management section\n##\n################################################\npod:\n # Grace period for Pod termination.\n # How many seconds to wait between sending\n # SIGTERM and SIGKILL during Pod termination process.\n # Increase this number is case of slow shutdown.\n terminationGracePeriod: 30\n\n################################################\n##\n## Log parameters section\n##\n################################################\nlogger:\n logtostderr: \"true\"\n alsologtostderr: \"false\"\n v: \"1\"\n stderrthreshold: \"\"\n vmodule: \"\"\n log_backtrace_at: \"\"\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:config.yaml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "etc-clickhouse-operator-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1145", - "self_link": null, - "uid": "c910d4d0-4126-4314-87d6-357263ee68b6" - } - }, - "etc-clickhouse-operator-templatesd-files": { - "api_version": null, - "binary_data": null, - "data": { - "001-templates.json.example": "{\n \"apiVersion\": \"clickhouse.altinity.com/v1\",\n \"kind\": \"ClickHouseInstallationTemplate\",\n \"metadata\": {\n \"name\": \"01-default-volumeclaimtemplate\"\n },\n \"spec\": {\n \"templates\": {\n \"volumeClaimTemplates\": [\n {\n \"name\": \"chi-default-volume-claim-template\",\n \"spec\": {\n \"accessModes\": [\n \"ReadWriteOnce\"\n ],\n \"resources\": {\n \"requests\": {\n \"storage\": \"2Gi\"\n }\n }\n }\n }\n ],\n \"podTemplates\": [\n {\n \"name\": \"chi-default-oneperhost-pod-template\",\n \"distribution\": \"OnePerHost\",\n \"spec\": {\n \"containers\" : [\n {\n \"name\": \"clickhouse\",\n \"image\": \"clickhouse/clickhouse-server:22.3\",\n \"ports\": [\n {\n \"name\": \"http\",\n \"containerPort\": 8123\n },\n {\n \"name\": \"client\",\n \"containerPort\": 9000\n },\n {\n \"name\": \"interserver\",\n \"containerPort\": 9009\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n}\n", - "default-pod-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-oneperhost-pod-template\"\nspec:\n templates:\n podTemplates:\n - name: default-oneperhost-pod-template\n distribution: \"OnePerHost\"\n", - "default-storage-template.yaml.example": "apiVersion: \"clickhouse.altinity.com/v1\"\nkind: \"ClickHouseInstallationTemplate\"\nmetadata:\n name: \"default-storage-template-2Gi\"\nspec:\n templates:\n volumeClaimTemplates:\n - name: default-storage-template-2Gi\n spec:\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 2Gi\n", - "readme": "Templates in this folder are packaged with an operator and available via 'useTemplate'\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:001-templates.json.example": {}, - "f:default-pod-template.yaml.example": {}, - "f:default-storage-template.yaml.example": {}, - "f:readme": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "etc-clickhouse-operator-templatesd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1149", - "self_link": null, - "uid": "aa6a5fc1-d99e-4cf1-84e8-0e920649dca9" - } - }, - "etc-clickhouse-operator-usersd-files": { - "api_version": null, - "binary_data": null, - "data": { - "01-clickhouse-operator-profile.xml": "\n\n\n\n\n\n\n\n \n \n \n 0\n 1\n 10\n 0\n 0\n \n \n\n", - "02-clickhouse-default-profile.xml": "\n\n\n\n\n\n\n \n \n 2\n 1\n 1000\n 1\n 1\n 1\n nearest_hostname\n 0\n \n \n \n\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - "f:01-clickhouse-operator-profile.xml": {}, - "f:02-clickhouse-default-profile.xml": {} - }, - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "etc-clickhouse-operator-usersd-files", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1150", - "self_link": null, - "uid": "4a2dc97f-8f77-44f0-b539-742d97c72689" - } - }, - "kube-root-ca.crt": { - "api_version": null, - "binary_data": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOj\nUGg5lIRwJjNrHEeTy1yscPQgZa+ooihqSj4CunSzhNYwfplT/VnF4RJpci95Twf8\nYQaWpumj9PpjN3SjCKUM+suhupgzv2y6tBV5DkiFPgJMw0BxFVuQQZ6sQ2sMqJTc\n1eEFkyBZGV9FslNvfYiKXjHMclOYRq/XBZS5xAKnEbsvH+D+14CbN4HmyCMtDFt0\nMnJDDBw0NDtHDlmX+ZWxUB6k4YCfAcbXb1TmerscwBOa8E4HA2dFQpxR3DdR/Q3i\npb+JGaNDRjoZQw5pWaSBfbmHuoDkhtqHvMHC5OfA3krslzJJCzKy2zfVHaxv1UCh\nYLUdQS924yJpX2ZduasCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFH5VNZgaPMAQlPP8bcoNZdbtuJA/MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBADLlXgRBvbKxt8Rde21F\nlZjvEu1gmtv69JaOY7GuzyM+58eeMxtUBM/uKPFkIesQ5Zl63Kbvgs5QmUFxvXhj\neGCf5YbpeKmIc8AV1i7p/Eb9tmum1OLQcNgNPd0Ne3im/nF2DwjBSLgiVqWnUijE\n4w5vov4tJS2KGc0XWp3DhDHiOY24fTRDQGXyTS6/EWpndxFqHn5AF1YrfRRT7QW3\nxp9Xe3v7sr4Atr66WZhzl+PoEK0md/i4ZI74wDoFoK7Rw7JHsNkxKaWJWXJM1YvN\nvOaGiGP7k14FieetLhaccKydjlJ4wE8/Gcl1hJehgkD2dqOPuXLGg5CEqBAQKvrH\nfj0=\n-----END CERTIFICATE-----\n" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/description": "Contains a CA bundle that can be used to verify the kube-apiserver when using internal endpoints such as the internal service IP or kubernetes.default.svc. No other usage is guaranteed across distributions of Kubernetes clusters." - }, - "creation_timestamp": "2024-01-07T16:54:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/description": {} - } - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:03+00:00" - } - ], - "name": "kube-root-ca.crt", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "718", - "self_link": null, - "uid": "cfdccefe-f06e-4138-bb88-7f10bfc7d1ab" - } - } - }, - "service": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "9701b7dbed038e104c80513f81ecf4bebdfe1827", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:21+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1494", - "self_link": null, - "uid": "a5d61737-6768-49e1-b746-049067aa7b4d" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "138db7a00a3cbbedff38427da076a4fbed4f12a1", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:05+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1709", - "self_link": null, - "uid": "1a0c9da3-15bf-4a1d-8099-ca4bf31eb602" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:07+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0dac135b4c68225f3fd35d36a3d1849efd0f0b89", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:16+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1476", - "self_link": null, - "uid": "a454456b-2460-42ed-b25f-bb002f04c062" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "clickhouse.altinity.com/ready": "yes" - }, - "creation_timestamp": "2024-01-07T16:58:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b0bc2b1203543bf471361553e2549ac2265ad8cc", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:clickhouse.altinity.com/ready": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:clusterIP": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9009,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:publishNotReadyAddresses": {}, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:57+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1672", - "self_link": null, - "uid": "760fcd68-089e-4e3d-9670-a79fc0f991e0" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "None", - "cluster_i_ps": [ - "None" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "tcp", - "node_port": null, - "port": 9000, - "protocol": "TCP", - "target_port": 9000 - }, - { - "app_protocol": null, - "name": "http", - "node_port": null, - "port": 8123, - "protocol": "TCP", - "target_port": 8123 - }, - { - "app_protocol": null, - "name": "interserver", - "node_port": null, - "port": 9009, - "protocol": "TCP", - "target_port": 9009 - } - ], - "publish_not_ready_addresses": true, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:spec": { - "f:ports": { - "k:{\"port\":8888,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - }, - "k:{\"port\":9999,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {} - } - }, - "f:selector": {} - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1156", - "self_link": null, - "uid": "048c764d-efe8-4684-b35c-49a5cfd5140b" - }, - "spec": { - "allocate_load_balancer_node_ports": null, - "cluster_ip": "10.96.42.236", - "cluster_i_ps": [ - "10.96.42.236" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": null, - "health_check_node_port": null, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "clickhouse-metrics", - "node_port": null, - "port": 8888, - "protocol": "TCP", - "target_port": 8888 - }, - { - "app_protocol": null, - "name": "operator-metrics", - "node_port": null, - "port": 9999, - "protocol": "TCP", - "target_port": 9999 - } - ], - "publish_not_ready_addresses": null, - "selector": { - "app": "clickhouse-operator" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "ClusterIP" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:25+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "26723b1231b0733f78fe4b4958547f3970d2de91" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:allocateLoadBalancerNodePorts": {}, - "f:externalTrafficPolicy": {}, - "f:internalTrafficPolicy": {}, - "f:ports": { - ".": {}, - "k:{\"port\":8123,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - }, - "k:{\"port\":9000,\"protocol\":\"TCP\"}": { - ".": {}, - "f:name": {}, - "f:port": {}, - "f:protocol": {}, - "f:targetPort": {} - } - }, - "f:selector": {}, - "f:sessionAffinity": {}, - "f:type": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:25+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1514", - "self_link": null, - "uid": "839c227b-f49c-4426-9c02-ec97a50717fc" - }, - "spec": { - "allocate_load_balancer_node_ports": true, - "cluster_ip": "10.96.20.31", - "cluster_i_ps": [ - "10.96.20.31" - ], - "external_i_ps": null, - "external_name": null, - "external_traffic_policy": "Local", - "health_check_node_port": 32389, - "internal_traffic_policy": "Cluster", - "ip_families": [ - "IPv4" - ], - "ip_family_policy": "SingleStack", - "load_balancer_class": null, - "load_balancer_ip": null, - "load_balancer_source_ranges": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "node_port": 30853, - "port": 8123, - "protocol": "TCP", - "target_port": "http" - }, - { - "app_protocol": null, - "name": "tcp", - "node_port": 32276, - "port": 9000, - "protocol": "TCP", - "target_port": "tcp" - } - ], - "publish_not_ready_addresses": null, - "selector": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/ready": "yes" - }, - "session_affinity": "None", - "session_affinity_config": null, - "type": "LoadBalancer" - }, - "status": { - "conditions": null, - "load_balancer": { - "ingress": null - } - } - } - }, - "pvc": { - "default-chi-test-cluster-replicated-0-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-7-worker" - }, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "6d97e0881e32932b8020b73d8a3cc8efed42b624", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:48+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:10+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1453", - "self_link": null, - "uid": "c50c0a3a-9cd3-442b-b34a-aace5b9fb965" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-c50c0a3a-9cd3-442b-b34a-aace5b9fb965" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-0-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-7-worker" - }, - "creation_timestamp": "2024-01-07T16:58:32+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "e5589a0b1a6bd9ce6bbc4877c49555ca37147c44", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:32+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:36+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:58+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1678", - "self_link": null, - "uid": "4dd36b88-2c33-4dd4-94a2-b0eeb128eb62" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-4dd36b88-2c33-4dd4-94a2-b0eeb128eb62" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-7-worker" - }, - "creation_timestamp": "2024-01-07T16:57:44+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "079970fb0d6e1939a8205abfb360f0eb4d1062f9", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:44+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:48+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:06+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1437", - "self_link": null, - "uid": "10e04385-1cc3-45db-bdc0-c944c37912b7" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-10e04385-1cc3-45db-bdc0-c944c37912b7" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - }, - "default-chi-test-cluster-replicated-1-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "pv.kubernetes.io/bind-completed": "yes", - "pv.kubernetes.io/bound-by-controller": "yes", - "volume.beta.kubernetes.io/storage-provisioner": "rancher.io/local-path", - "volume.kubernetes.io/selected-node": "acto-0-cluster-7-worker" - }, - "creation_timestamp": "2024-01-07T16:58:27+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": [ - "kubernetes.io/pvc-protection" - ], - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "f92ed872d78e4184b546f4312f1d915d868c273d", - "clickhouse.altinity.com/reclaimPolicy": "Delete", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:volume.kubernetes.io/selected-node": {} - } - } - }, - "manager": "kube-scheduler", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:27+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:accessModes": {}, - "f:capacity": { - ".": {}, - "f:storage": {} - }, - "f:phase": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:30+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/reclaimPolicy": {} - } - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:49+00:00" - } - ], - "name": "default-chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1644", - "self_link": null, - "uid": "3cce0616-19a4-4d2b-a5af-31bb745d2a28" - }, - "spec": { - "access_modes": [ - "ReadWriteOnce" - ], - "data_source": null, - "data_source_ref": null, - "resources": { - "claims": null, - "limits": null, - "requests": { - "storage": "500Mi" - } - }, - "selector": null, - "storage_class_name": "standard", - "volume_mode": "Filesystem", - "volume_name": "pvc-3cce0616-19a4-4d2b-a5af-31bb745d2a28" - }, - "status": { - "access_modes": [ - "ReadWriteOnce" - ], - "allocated_resources": null, - "capacity": { - "storage": "500Mi" - }, - "conditions": null, - "phase": "Bound", - "resize_status": null - } - } - }, - "cronjob": {}, - "ingress": {}, - "network_policy": {}, - "pod_disruption_budget": { - "test-cluster-replicated": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:38+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": 1, - "labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - }, - "managed_fields": [ - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {} - }, - "f:ownerReferences": { - ".": {}, - "k:{\"uid\":\"37ec6a82-28bc-48fd-877f-be18e6a2cb52\"}": {} - } - }, - "f:spec": { - "f:maxUnavailable": {}, - "f:selector": {} - } - }, - "manager": "clickhouse-operator", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:38+00:00" - }, - { - "api_version": "policy/v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:status": { - "f:conditions": { - ".": {}, - "k:{\"type\":\"DisruptionAllowed\"}": { - ".": {}, - "f:lastTransitionTime": {}, - "f:message": {}, - "f:observedGeneration": {}, - "f:reason": {}, - "f:status": {}, - "f:type": {} - } - }, - "f:currentHealthy": {}, - "f:desiredHealthy": {}, - "f:disruptionsAllowed": {}, - "f:expectedPods": {}, - "f:observedGeneration": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": "status", - "time": "2024-01-07T16:58:01+00:00" - } - ], - "name": "test-cluster-replicated", - "namespace": "acto-clickhouse", - "owner_references": [ - { - "api_version": "clickhouse.altinity.com/v1", - "block_owner_deletion": true, - "controller": true, - "kind": "ClickHouseInstallation", - "name": "test-cluster", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - } - ], - "resource_version": "1641", - "self_link": null, - "uid": "8c671800-10c1-4f6e-89ea-fd43cd5738f0" - }, - "spec": { - "max_unavailable": 1, - "min_available": null, - "selector": { - "match_expressions": null, - "match_labels": { - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse" - } - }, - "unhealthy_pod_eviction_policy": null - }, - "status": { - "conditions": [ - { - "last_transition_time": "2024-01-07T16:58:49+00:00", - "message": "", - "observed_generation": 1, - "reason": "SufficientPods", - "status": "True", - "type": "DisruptionAllowed" - } - ], - "current_healthy": 4, - "desired_healthy": 3, - "disrupted_pods": null, - "disruptions_allowed": 1, - "expected_pods": 4, - "observed_generation": 1 - } - } - }, - "secret": { - "clickhouse-operator": { - "api_version": null, - "data": { - "password": "clickhouse_operator_password", - "username": "clickhouse_operator" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:stringData": { - "f:password": {}, - "f:username": {} - }, - "f:type": {} - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1151", - "self_link": null, - "uid": "38febd61-6315-4ec6-ac22-60e0f71a2315" - }, - "string_data": null, - "type": "Opaque" - }, - "clickhouse-operator-token-z5wts": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOj\nUGg5lIRwJjNrHEeTy1yscPQgZa+ooihqSj4CunSzhNYwfplT/VnF4RJpci95Twf8\nYQaWpumj9PpjN3SjCKUM+suhupgzv2y6tBV5DkiFPgJMw0BxFVuQQZ6sQ2sMqJTc\n1eEFkyBZGV9FslNvfYiKXjHMclOYRq/XBZS5xAKnEbsvH+D+14CbN4HmyCMtDFt0\nMnJDDBw0NDtHDlmX+ZWxUB6k4YCfAcbXb1TmerscwBOa8E4HA2dFQpxR3DdR/Q3i\npb+JGaNDRjoZQw5pWaSBfbmHuoDkhtqHvMHC5OfA3krslzJJCzKy2zfVHaxv1UCh\nYLUdQS924yJpX2ZduasCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFH5VNZgaPMAQlPP8bcoNZdbtuJA/MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBADLlXgRBvbKxt8Rde21F\nlZjvEu1gmtv69JaOY7GuzyM+58eeMxtUBM/uKPFkIesQ5Zl63Kbvgs5QmUFxvXhj\neGCf5YbpeKmIc8AV1i7p/Eb9tmum1OLQcNgNPd0Ne3im/nF2DwjBSLgiVqWnUijE\n4w5vov4tJS2KGc0XWp3DhDHiOY24fTRDQGXyTS6/EWpndxFqHn5AF1YrfRRT7QW3\nxp9Xe3v7sr4Atr66WZhzl+PoEK0md/i4ZI74wDoFoK7Rw7JHsNkxKaWJWXJM1YvN\nvOaGiGP7k14FieetLhaccKydjlJ4wE8/Gcl1hJehgkD2dqOPuXLGg5CEqBAQKvrH\nfj0=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImVxeERqTWk3Y0hoQTlOdU5nRnpYQ1E3dkRVYk1TMjdNanV2b2R6a2wwWEEifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiY2xpY2tob3VzZS1vcGVyYXRvci10b2tlbi16NXd0cyIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJjbGlja2hvdXNlLW9wZXJhdG9yIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiODEyOWQ0ZDQtYTA5YS00YzdlLTg0ZjQtNWMyY2IxYTRkY2QyIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpjbGlja2hvdXNlLW9wZXJhdG9yIn0.I4yiUjJtIYY9RG4mqrdZ7Izr32qc0fHwT7PKrL2O9AOyEJT-CaQq5mD5grNBk8MLvzal9HR91OFHE-uFQsOaAjnU6MlE1iOTXGTo0aexHL_ZMJEtQPOS3eWR7WhYrYZ5d7oCT67zpmR3Jn_fHPx5w_8mbrY_Eg0QZSDk-5k5579dcUcsw8HmWgP5Iu1wcTFsAqZ99ZAJtwevOgDeNedX9mxK8vdsMW6-4xa3N51J9h8msvXtQ1QcsPaChdHTYK49gqmpKvY39-ONX_MoHoPywrRH2E0rGcJrY1aTyWiFB9Iu6fpvqD8G7KdJDSTbkJPXrlwQiZ-3vmcfiLdLGXFLiQ" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "clickhouse-operator", - "kubernetes.io/service-account.uid": "8129d4d4-a09a-4c7e-84f4-5c2cb1a4dcd2" - }, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "clickhouse-operator-token-z5wts", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1143", - "self_link": null, - "uid": "bae29e2f-5248-47d0-8b7d-b0f69d6d4603" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - }, - "default-token-x5lch": { - "api_version": null, - "data": { - "ca.crt": "-----BEGIN CERTIFICATE-----\nMIIC/jCCAeagAwIBAgIBADANBgkqhkiG9w0BAQsFADAVMRMwEQYDVQQDEwprdWJl\ncm5ldGVzMB4XDTI0MDEwNzE2NTI1NVoXDTM0MDEwNDE2NTI1NVowFTETMBEGA1UE\nAxMKa3ViZXJuZXRlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOj\nUGg5lIRwJjNrHEeTy1yscPQgZa+ooihqSj4CunSzhNYwfplT/VnF4RJpci95Twf8\nYQaWpumj9PpjN3SjCKUM+suhupgzv2y6tBV5DkiFPgJMw0BxFVuQQZ6sQ2sMqJTc\n1eEFkyBZGV9FslNvfYiKXjHMclOYRq/XBZS5xAKnEbsvH+D+14CbN4HmyCMtDFt0\nMnJDDBw0NDtHDlmX+ZWxUB6k4YCfAcbXb1TmerscwBOa8E4HA2dFQpxR3DdR/Q3i\npb+JGaNDRjoZQw5pWaSBfbmHuoDkhtqHvMHC5OfA3krslzJJCzKy2zfVHaxv1UCh\nYLUdQS924yJpX2ZduasCAwEAAaNZMFcwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB\n/wQFMAMBAf8wHQYDVR0OBBYEFH5VNZgaPMAQlPP8bcoNZdbtuJA/MBUGA1UdEQQO\nMAyCCmt1YmVybmV0ZXMwDQYJKoZIhvcNAQELBQADggEBADLlXgRBvbKxt8Rde21F\nlZjvEu1gmtv69JaOY7GuzyM+58eeMxtUBM/uKPFkIesQ5Zl63Kbvgs5QmUFxvXhj\neGCf5YbpeKmIc8AV1i7p/Eb9tmum1OLQcNgNPd0Ne3im/nF2DwjBSLgiVqWnUijE\n4w5vov4tJS2KGc0XWp3DhDHiOY24fTRDQGXyTS6/EWpndxFqHn5AF1YrfRRT7QW3\nxp9Xe3v7sr4Atr66WZhzl+PoEK0md/i4ZI74wDoFoK7Rw7JHsNkxKaWJWXJM1YvN\nvOaGiGP7k14FieetLhaccKydjlJ4wE8/Gcl1hJehgkD2dqOPuXLGg5CEqBAQKvrH\nfj0=\n-----END CERTIFICATE-----\n", - "namespace": "acto-clickhouse", - "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImVxeERqTWk3Y0hoQTlOdU5nRnpYQ1E3dkRVYk1TMjdNanV2b2R6a2wwWEEifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJhY3RvLWNsaWNraG91c2UiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlY3JldC5uYW1lIjoiZGVmYXVsdC10b2tlbi14NWxjaCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJkZWZhdWx0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiMDk2MjJlMGItNGI3Ni00NjcwLTk0ZWQtNzI5MmY0MGQzYTc0Iiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50OmFjdG8tY2xpY2tob3VzZTpkZWZhdWx0In0.XrdYSkcbdal98FVwSmWeiXgfqpJhjoWP7xOVAosm275IFpjQH3EwPRnIgRV1Mhf1Fjh5u4VrtXtjhNUQp5wElsDA-TOEApn5qJ_soyNGD0qsM-MXl8ZQw3OQKOkGzcviZHdjQO8Bq0OSOQYSRfU4-0GcLSDC8JDiR9Np9eSRfER121q7eOJ6d1gsYcO0CVwlqe_gsp3rGPLM3T7fCNTlRkgjnGEkiUno_4RH2Pk25jVEJ_HCNls9foZEIOtVdEL2NA41HFWQgESQB-QLOFmIpB2aEk72x1dBd5EF5qxTLWhRjjtwNoLHehrK7M796X7NBhaR22s48ISrSuk9Gu2KYw" - }, - "immutable": null, - "kind": null, - "metadata": { - "annotations": { - "kubernetes.io/service-account.name": "default", - "kubernetes.io/service-account.uid": "09622e0b-4b76-4670-94ed-7292f40d3a74" - }, - "creation_timestamp": "2024-01-07T16:54:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:data": { - ".": {}, - "f:ca.crt": {}, - "f:namespace": {}, - "f:token": {} - }, - "f:metadata": { - "f:annotations": { - ".": {}, - "f:kubernetes.io/service-account.name": {}, - "f:kubernetes.io/service-account.uid": {} - } - }, - "f:type": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:54:03+00:00" - } - ], - "name": "default-token-x5lch", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "720", - "self_link": null, - "uid": "24d0442c-1db4-400e-803a-8d56b8671d37" - }, - "string_data": null, - "type": "kubernetes.io/service-account-token" - } - }, - "endpoints": { - "chi-test-cluster-replicated-0-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:11+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "9701b7dbed038e104c80513f81ecf4bebdfe1827", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:21+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1495", - "self_link": null, - "uid": "4a00783f-2459-46e9-9dd6-2127c1f570e8" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-0-0", - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1493", - "uid": "4000c494-52d4-4a5d-994d-80e18cab4278" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-0-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:59+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "138db7a00a3cbbedff38427da076a4fbed4f12a1", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "0", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:59:05+00:00" - } - ], - "name": "chi-test-cluster-replicated-0-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1710", - "self_link": null, - "uid": "874a6f02-50f6-4209-a7f6-aed79c07c7b1" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-0-1-0", - "ip": "10.244.1.12", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1705", - "uid": "77406a5e-0777-4cde-865a-503e70df4dbd" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-0": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:07+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "0dac135b4c68225f3fd35d36a3d1849efd0f0b89", - "clickhouse.altinity.com/replica": "0", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:16+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-0", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1477", - "self_link": null, - "uid": "43c2ccfa-624e-49a1-a08f-453a2ff44d20" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-0-0", - "ip": "10.244.1.7", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1475", - "uid": "4d37d2c6-4377-4026-ae25-25bfff73bd76" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "chi-test-cluster-replicated-1-1": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:58:49+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "host", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/cluster": "replicated", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "b0bc2b1203543bf471361553e2549ac2265ad8cc", - "clickhouse.altinity.com/replica": "1", - "clickhouse.altinity.com/shard": "1", - "service.kubernetes.io/headless": "" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/cluster": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {}, - "f:clickhouse.altinity.com/replica": {}, - "f:clickhouse.altinity.com/shard": {}, - "f:service.kubernetes.io/headless": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:57+00:00" - } - ], - "name": "chi-test-cluster-replicated-1-1", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1674", - "self_link": null, - "uid": "f1f0584e-3a1d-4bea-9c21-5c92ca225bc6" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": "chi-test-cluster-replicated-1-1-0", - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1667", - "uid": "29ab374e-fc4f-4c9b-9a96-85d148140ada" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "interserver", - "port": 9009, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-operator-metrics": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:01+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "app": "clickhouse-operator", - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - ".": {}, - "f:app": {}, - "f:clickhouse.altinity.com/chop": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:08+00:00" - } - ], - "name": "clickhouse-operator-metrics", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1234", - "self_link": null, - "uid": "ac322f73-284b-4b70-9b8d-f2d080d13337" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.2.4", - "node_name": "acto-0-cluster-7-worker3", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "clickhouse-operator-8697784fc9-xlwb2", - "namespace": "acto-clickhouse", - "resource_version": "1224", - "uid": "ce5f0a9c-df77-46fc-81b2-cd43f5235115" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "operator-metrics", - "port": 9999, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "clickhouse-metrics", - "port": 8888, - "protocol": "TCP" - } - ] - } - ] - }, - "clickhouse-test-cluster": { - "api_version": null, - "kind": null, - "metadata": { - "annotations": { - "endpoints.kubernetes.io/last-change-trigger-time": "2024-01-07T16:58:49Z" - }, - "creation_timestamp": "2024-01-07T16:58:25+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/Service": "chi", - "clickhouse.altinity.com/app": "chop", - "clickhouse.altinity.com/chi": "test-cluster", - "clickhouse.altinity.com/namespace": "acto-clickhouse", - "clickhouse.altinity.com/object-version": "26723b1231b0733f78fe4b4958547f3970d2de91" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:annotations": { - ".": {}, - "f:endpoints.kubernetes.io/last-change-trigger-time": {} - }, - "f:labels": { - ".": {}, - "f:clickhouse.altinity.com/Service": {}, - "f:clickhouse.altinity.com/app": {}, - "f:clickhouse.altinity.com/chi": {}, - "f:clickhouse.altinity.com/namespace": {}, - "f:clickhouse.altinity.com/object-version": {} - } - }, - "f:subsets": {} - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:58:25+00:00" - } - ], - "name": "clickhouse-test-cluster", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1706", - "self_link": null, - "uid": "f0701b21-9f9e-4e4f-8d5c-a0d06d0a89e6" - }, - "subsets": [ - { - "addresses": [ - { - "hostname": null, - "ip": "10.244.1.10", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1667", - "uid": "29ab374e-fc4f-4c9b-9a96-85d148140ada" - } - }, - { - "hostname": null, - "ip": "10.244.1.12", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-1-0", - "namespace": "acto-clickhouse", - "resource_version": "1705", - "uid": "77406a5e-0777-4cde-865a-503e70df4dbd" - } - }, - { - "hostname": null, - "ip": "10.244.1.7", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-1-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1475", - "uid": "4d37d2c6-4377-4026-ae25-25bfff73bd76" - } - }, - { - "hostname": null, - "ip": "10.244.1.8", - "node_name": "acto-0-cluster-7-worker", - "target_ref": { - "api_version": null, - "field_path": null, - "kind": "Pod", - "name": "chi-test-cluster-replicated-0-0-0", - "namespace": "acto-clickhouse", - "resource_version": "1493", - "uid": "4000c494-52d4-4a5d-994d-80e18cab4278" - } - } - ], - "not_ready_addresses": null, - "ports": [ - { - "app_protocol": null, - "name": "http", - "port": 8123, - "protocol": "TCP" - }, - { - "app_protocol": null, - "name": "tcp", - "port": 9000, - "protocol": "TCP" - } - ] - } - ] - } - }, - "service_account": { - "clickhouse-operator": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:57:00+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": { - "clickhouse.altinity.com/chop": "0.22.2" - }, - "managed_fields": [ - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:metadata": { - "f:labels": { - "f:clickhouse.altinity.com/chop": {} - } - } - }, - "manager": "kubectl", - "operation": "Apply", - "subresource": null, - "time": "2024-01-07T16:57:00+00:00" - }, - { - "api_version": "v1", - "fields_type": "FieldsV1", - "fields_v1": { - "f:secrets": { - ".": {}, - "k:{\"name\":\"clickhouse-operator-token-z5wts\"}": {} - } - }, - "manager": "kube-controller-manager", - "operation": "Update", - "subresource": null, - "time": "2024-01-07T16:57:01+00:00" - } - ], - "name": "clickhouse-operator", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "1144", - "self_link": null, - "uid": "8129d4d4-a09a-4c7e-84f4-5c2cb1a4dcd2" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "clickhouse-operator-token-z5wts", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - }, - "default": { - "api_version": null, - "automount_service_account_token": null, - "image_pull_secrets": null, - "kind": null, - "metadata": { - "annotations": null, - "creation_timestamp": "2024-01-07T16:54:03+00:00", - "deletion_grace_period_seconds": null, - "deletion_timestamp": null, - "finalizers": null, - "generate_name": null, - "generation": null, - "labels": null, - "managed_fields": null, - "name": "default", - "namespace": "acto-clickhouse", - "owner_references": null, - "resource_version": "721", - "self_link": null, - "uid": "09622e0b-4b76-4670-94ed-7292f40d3a74" - }, - "secrets": [ - { - "api_version": null, - "field_path": null, - "kind": null, - "name": "default-token-x5lch", - "namespace": null, - "resource_version": null, - "uid": null - } - ] - } - }, - "job": {}, - "role": {}, - "role_binding": {}, - "custom_resource_spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicasCount": 2, - "shardsCount": 2 - }, - "name": "replicated" - } - ], - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns" - } - ] - } - }, - "defaults": { - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "templates": { - "podTemplates": [ - { - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod" - } - ] - } - } - ], - "volumeClaimTemplates": [ - { - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - } - }, - "custom_resource_status": { - "action": "reconcile completed successfully, task id: ea4c2e26-54b6-4ce3-80d4-0ef988b95ee8", - "actions": [ - "2024-01-07T16:59:18.35346823Z reconcile completed successfully, task id: ea4c2e26-54b6-4ce3-80d4-0ef988b95ee8", - "2024-01-07T16:57:34.274053818Z reconcile started, task id: ea4c2e26-54b6-4ce3-80d4-0ef988b95ee8" - ], - "chop-commit": "aea62db", - "chop-date": "2023-12-14T12:01:52", - "chop-ip": "10.244.2.4", - "chop-version": "0.22.2", - "clusters": 1, - "endpoint": "clickhouse-test-cluster.acto-clickhouse.svc.cluster.local", - "fqdns": [ - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-1.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "hosts": 4, - "hostsWithTablesCreated": [ - "chi-test-cluster-replicated-1-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-0-0.acto-clickhouse.svc.cluster.local", - "chi-test-cluster-replicated-1-1.acto-clickhouse.svc.cluster.local" - ], - "normalizedCompleted": { - "apiVersion": "clickhouse.altinity.com/v1", - "kind": "ClickHouseInstallation", - "metadata": { - "creationTimestamp": "2024-01-07T16:57:34Z", - "finalizers": [ - "finalizer.clickhouseinstallation.altinity.com" - ], - "generation": 1, - "name": "test-cluster", - "namespace": "acto-clickhouse", - "resourceVersion": "1740", - "uid": "37ec6a82-28bc-48fd-877f-be18e6a2cb52" - }, - "spec": { - "configuration": { - "clusters": [ - { - "layout": { - "replicas": [ - { - "name": "0", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "name": "1", - "shards": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "shards": [ - { - "internalReplication": "True", - "name": "0", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "0-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "internalReplication": "True", - "name": "1", - "replicas": [ - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-0", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - { - "httpPort": 8123, - "interserverHTTPPort": 9009, - "name": "1-1", - "tcpPort": 9000, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "replicasCount": 2, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - } - ], - "shardsCount": 2 - }, - "name": "replicated", - "schemaPolicy": { - "replica": "All", - "shard": "All" - }, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - } - ], - "users": { - "clickhouse_operator/networks/ip": [ - "10.244.2.4" - ], - "clickhouse_operator/password_sha256_hex": "716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448", - "clickhouse_operator/profile": "clickhouse_operator", - "default/networks/host_regexp": "(chi-test-cluster-[^.]+\\d+-\\d+|clickhouse\\-test-cluster)\\.acto-clickhouse\\.svc\\.cluster\\.local$", - "default/networks/ip": [ - "::1", - "127.0.0.1", - "10.244.1.8", - "10.244.1.12", - "10.244.1.7", - "10.244.1.10" - ], - "default/profile": "default", - "default/quota": "default" - }, - "zookeeper": { - "nodes": [ - { - "host": "zookeeper.zoo3.ns", - "port": 2181 - } - ] - } - }, - "defaults": { - "replicasUseFQDN": "False", - "storageManagement": {}, - "templates": { - "dataVolumeClaimTemplate": "default", - "podTemplate": "clickhouse:19.6" - } - }, - "reconciling": { - "cleanup": { - "reconcileFailedObjects": { - "configMap": "Retain", - "pvc": "Retain", - "service": "Retain", - "statefulSet": "Retain" - }, - "unknownObjects": { - "configMap": "Delete", - "pvc": "Delete", - "service": "Delete", - "statefulSet": "Delete" - } - }, - "configMapPropagationTimeout": 10, - "policy": "unspecified" - }, - "stop": "False", - "taskID": "96c87312-a73a-4abb-91c9-6d0dfd212724", - "templates": { - "PodTemplatesIndex": {}, - "VolumeClaimTemplatesIndex": {}, - "podTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "clickhouse:19.6", - "spec": { - "containers": [ - { - "image": "clickhouse/clickhouse-server:22.3", - "name": "clickhouse-pod", - "resources": {} - } - ] - }, - "zone": {} - } - ], - "volumeClaimTemplates": [ - { - "metadata": { - "creationTimestamp": null - }, - "name": "default", - "spec": { - "accessModes": [ - "ReadWriteOnce" - ], - "resources": { - "requests": { - "storage": "500Mi" - } - } - } - } - ] - }, - "templating": { - "policy": "manual" - }, - "troubleshoot": "False" - } - }, - "pod-ips": [ - "10.244.1.8", - "10.244.1.12", - "10.244.1.7", - "10.244.1.10" - ], - "pods": [ - "chi-test-cluster-replicated-0-0-0", - "chi-test-cluster-replicated-0-1-0", - "chi-test-cluster-replicated-1-0-0", - "chi-test-cluster-replicated-1-1-0" - ], - "shards": 2, - "status": "Completed", - "taskID": "96c87312-a73a-4abb-91c9-6d0dfd212724", - "taskIDsCompleted": [ - "96c87312-a73a-4abb-91c9-6d0dfd212724" - ], - "taskIDsStarted": [ - "ea4c2e26-54b6-4ce3-80d4-0ef988b95ee8" - ] - } -} \ No newline at end of file diff --git a/data/clickhouse-operator/config.json b/data/clickhouse-operator/config.json index c26627748d..36a5caf166 100644 --- a/data/clickhouse-operator/config.json +++ b/data/clickhouse-operator/config.json @@ -10,6 +10,7 @@ { "apply": { "file": "data/clickhouse-operator/operator.yaml", + "operator_container_name": "clickhouse-operator", "operator": true } }