@@ -210,6 +210,30 @@ redis:
210210 addrs : " " # A list of clusters: "127.0.0.1:7001/1,127.0.0.2:7002/1"
211211 password : " redis password" # "" == no password
212212
213+ rabbitmq :
214+ # Configure the following ONLY if using an off-cluster rabbitmq
215+ url : " amqp://myuser:mypassword@localhost:5672/myvhost"
216+ # The username and password to be used by the on-cluster database.
217+ # If left empty they will be generated using randAlphaNum
218+ username : " "
219+ password : " "
220+ # GCP PDs and EBS volumes are supported only
221+ persistence :
222+ enabled : false # Set to true to enable persistence
223+ accessMode : ReadWriteOnce
224+ size : 5Gi # PVC size
225+ # # rabbitmq data Persistent Volume Storage Class
226+ # # If defined, storageClassName: <storageClass>
227+ # # If set to "-", storageClassName: "", which disables dynamic provisioning
228+ # # If undefined (the default) or set to null, no storageClassName spec is
229+ # # set, choosing the default provisioner. (gp2 on AWS, standard on
230+ # # GKE, AWS & OpenStack)
231+ # #
232+ # # Storage class of PV to bind. By default it looks for standard storage class.
233+ # # If the PV uses a different storage class, specify that here.
234+ storageClass : " "
235+ volumeName : " "
236+
213237influxdb :
214238 # URL configuration is only available in off-cluster Influx database
215239 url : " http://my.influx.url:8086"
@@ -273,21 +297,3 @@ registry:
273297 organization : " "
274298 username : " "
275299 password : " "
276-
277- rabbitmq :
278- username : " rabbit"
279- password : " rabbit"
280- vhost : " drycc"
281- persistence :
282- enabled : false # Set to true to enable persistence
283- # # rabbitmq data Persistent Volume Storage Class
284- # # If defined, storageClassName: <storageClass>
285- # # If set to "-", storageClassName: "", which disables dynamic provisioning
286- # # If undefined (the default) or set to null, no storageClassName spec is
287- # # set, choosing the default provisioner. (gp2 on AWS, standard on
288- # # GKE, AWS & OpenStack)
289- # #
290- storageClass : default
291- volumeName : " "
292- accessMode : ReadWriteOnce
293- size : 8Gi # PVC size
0 commit comments