This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
values.yaml
64 lines (55 loc) · 1.89 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Configuration for the ClickHouse cluster to be started
clickhouse:
# default cluster name
clusterName: all-nodes
# shards count can not scale in this value.
shardscount: 1
# replicas count can not modify this value when the cluster has already created.
replicascount: 2
# ClickHouse server image configuration
image: radondb/clickhouse-server:21.1.3.32
imagePullPolicy: IfNotPresent
resources:
memory: "1Gi"
cpu: "0.5"
storage: "10Gi"
# User Configuration
user:
- username: clickhouse
password: c1ickh0use0perator
networks:
- "127.0.0.1"
- "::/0"
ports:
# Port for the native interface, see https://clickhouse.tech/docs/en/interfaces/tcp/
tcp: 9000
# Port for HTTP/REST interface, see https://clickhouse.tech/docs/en/interfaces/http/
http: 8123
# servicee, value: ClusterIP/NodePort/LoadBalancer
# see https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
svc:
type: ClusterIP
# If type: LoadBalancer, can use https://docs.qingcloud.com/product/container/qke/index#%E4%B8%8E-qingcloud-iaas-%E7%9A%84%E6%95%B4%E5%90%88
qceip:
# Configuration for the busybox container
busybox:
image: busybox
imagePullPolicy: IfNotPresent
# required, zookeeper configuration
zookeeper:
# If you want to create ZooKeeper cluster by operator, use the following configuration
install: true
replicas: 3
port: 2181
image: radondb/zookeeper:3.6.1
imagePullPolicy: IfNotPresent
# If you don’t want Operator to create a ZooKeeper cluster, we also provide a ZooKeeper deployment file,
# you can customize the following configuration.
# install: false
# replicas: specify by yourself
# image: radondb/zookeeper:3.6.2
# imagePullPolicy: specify by yourself
# resources:
# memory: specify by yourself
# cpu: specify by yourself
# storage: specify by yourself