File tree Expand file tree Collapse file tree 5 files changed +20
-0
lines changed
deploy/nuvolaris-permissions Expand file tree Collapse file tree 5 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -702,6 +702,12 @@ spec:
702
702
replicas :
703
703
description : number of total postgres replicas (1 primary, N-1 replicas). Defaulted to 1
704
704
type : integer
705
+ auto-compaction-retention :
706
+ description : defines how long to retain historical versions of keys before automatically compacting them
707
+ type : string
708
+ quota-backend-bytes :
709
+ description : the etcd backend database has a default size limit of 2 GiB. This can be increased explicitly
710
+ type : integer
705
711
root :
706
712
description : ETCD root user credentials
707
713
type : object
Original file line number Diff line number Diff line change 40
40
env :
41
41
- name : ETCD_INITIAL_CLUSTER
42
42
value : {{etc_initial_cluster}}
43
+ - name : ETCD_AUTO_COMPACTION_RETENTION
44
+ value : " {{etcd_auto_compaction_retention}}"
45
+ - name : ETCD_QUOTA_BACKEND_BYTES
46
+ value : " {{etcd_quota_backend_bytes}}"
43
47
image : docker.io/bitnami/etcd:3.5.17-debian-12-r0
44
48
imagePullPolicy : IfNotPresent
45
49
volumeClaimTemplates :
Original file line number Diff line number Diff line change @@ -684,6 +684,8 @@ def get_etcd_config_data():
684
684
"storageClass" : cfg .get ("nuvolaris.storageclass" ),
685
685
"root_password" :cfg .get ("etcd.root.password" ) or "s0meP@ass3wd" ,
686
686
"etcd_replicas" :get_etcd_replica (),
687
+ "etcd_auto_compaction_retention" : cfg .get ("etcd.auto_compaction_retention" ) or "1" ,
688
+ "etcd_quota_backend_bytes" : cfg .get ("etcd.quota-backend-bytes" ) or "2147483648" ,
687
689
"namespace" :"nuvolaris" ,
688
690
"container_cpu_req" : cfg .get ('etcd.resources.cpu-req' ) or "250m" ,
689
691
"container_cpu_lim" : cfg .get ('etcd.resources.cpu-lim' ) or "375m" ,
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ assert(cfg.detect_storage()["nuvolaris.storageclass"])
36
36
# for this test minioClient and Milvus should see this env variable
37
37
os.environ['MINIO_API_HOST']='localhost'
38
38
os.environ['MILVUS_API_HOST']='localhost'
39
+ os.environ['MILVUS_ROOT_PASSWORD']='An0therPa55'
39
40
40
41
assert(etcd.create())
41
42
assert(minio.create())
Original file line number Diff line number Diff line change 73
73
invoker :
74
74
user : controller_admin
75
75
password : s0meP@ass2
76
+ etcd :
77
+ volume-size : 5
78
+ replicas : 3
79
+ root :
80
+ password : 0therPa55
81
+ auto-compaction-retention : 1
82
+ quota-backend-bytes : 8589934592
76
83
kafka :
77
84
host : kafka
78
85
volume-size : 5
You can’t perform that action at this time.
0 commit comments