@@ -92,39 +92,29 @@ global:
9292 passportLocation : " on-cluster"
9393
9494storage :
95- # bucket lookup supported by the server.
96- # Valid options are '[dns, path]'
97- # When the storage is off-cluster, this value can be set
98- # Otherwise, Hard coded as `path`
99- lookup : " path"
100- # health check url is only available in off-cluster storage
101- health : " "
102- # endpoint configuration is only available in off-cluster storage
103- endpoint : " "
104- # If storage is off-cluster, accesskey and secretkey must be specified
105- # Otherwise, they are generated randomly, if they are empty
106- accesskey : " "
107- secretkey : " "
108- # The following three bucket name parameters are valid only in cluster-off
109- # In the case of cluster-on, they are hard coded and named: builder, registry
110- builderBucket : " drycc-builder-bucket"
111- registryBucket : " drycc-registry-bucket"
112- # Configure the following ONLY if you want persistence for on-cluster storage
113- persistence :
114- enabled : false # Set to true to enable persistence
115- accessMode : ReadWriteOnce
116- size : 5Gi # PVC size
117- # # storage data Persistent Volume Storage Class
118- # # If defined, storageClassName: <storageClass>
119- # # If set to "-", storageClassName: "", which disables dynamic provisioning
120- # # If undefined (the default) or set to null, no storageClassName spec is
121- # # set, choosing the default provisioner. (gp2 on AWS, standard on
122- # # GKE, AWS & OpenStack)
123- # #
124- # # Storage class of PV to bind. By default it looks for standard storage class.
125- # # If the PV uses a different storage class, specify that here.
126- storageClass : " "
127- volumeName : " "
95+ minio :
96+ # Storage zone count
97+ zones : 1
98+ # Device count of per replica
99+ drives : 4
100+ # Number of replicas per zone
101+ replicas : 1
102+ persistence :
103+ enabled : false
104+ accessMode : ReadWriteOnce
105+ size : 5Gi
106+ storageClass : " "
107+ meta :
108+ pd :
109+ persistence :
110+ enabled : false
111+ size : 5Gi
112+ storageClass : " "
113+ tikv :
114+ persistence :
115+ enabled : false
116+ size : 5Gi
117+ storageClass : " "
128118
129119# Set the default (global) way of how Application (your own) images are
130120# pulled from within the Controller.
@@ -163,12 +153,17 @@ controller:
163153
164154database :
165155 # The following parameters are configured only when using an on-cluster Database instance
166- # If left empty they will be generated using randAlphaNum
167- username : " "
156+ # The username and password to be used by the on-cluster database.
157+ # If left empty they will be generated
158+ # The user name should be set to lowercase letters
159+ superuser : " postgres"
160+ superuserPassword : " "
161+ replicator : " standby"
162+ replicatorPassword : " "
163+ user : " "
168164 password : " "
169165 persistence :
170166 enabled : false # Set to true to enable persistence
171- accessMode : ReadWriteOnce
172167 size : 5Gi # PVC size
173168 # # database data Persistent Volume Storage Class
174169 # # If defined, storageClassName: <storageClass>
@@ -180,7 +175,6 @@ database:
180175 # # Storage class of PV to bind. By default it looks for standard storage class.
181176 # # If the PV uses a different storage class, specify that here.
182177 storageClass : " "
183- volumeName : " "
184178
185179redis :
186180 # The addrs parameters are configured only when using an off-cluster Redis instance
0 commit comments