@@ -278,7 +278,28 @@ rabbitmq:
278
278
cpu : " 1"
279
279
memory : 2Gi
280
280
281
- rabbitmqExternal : {}
281
+ # # External RabbitMQ configuration
282
+ # # All of these values are only used when postgresql.enabled is set to false
283
+ # # @param rabbitmqExternal.username RabbitMQ user
284
+ # # @param rabbitmqExternal.password Password
285
+ # # @param rabbitmqExternal.amqpPort
286
+ # # @param rabbitmqExternal.managementPort
287
+ # # @param rabbitmqExternal.hostname
288
+ # # @param rabbitmqExternal.protocol
289
+ # # @param rabbitmqExternal.vhost
290
+ # # @param rabbitmqExternal.existingSecret Name of an existing secret resource containing the credentials
291
+ # # @param rabbitmqExternal.existingSecretPasswordKey Name of an existing secret key containing the credentials
292
+ # #
293
+ rabbitmqExternal :
294
+ username : invenio
295
+ password : " "
296
+ amqpPort : 5671
297
+ managementPort : 15672
298
+ hostname : " "
299
+ protocol : " "
300
+ vhost : " "
301
+ existingSecret : " "
302
+ existingSecretPasswordKey : " amqp-password"
282
303
283
304
flower :
284
305
enabled : true
@@ -301,7 +322,24 @@ postgresql:
301
322
username : invenio
302
323
database : invenio
303
324
304
- postgresqlExternal : {}
325
+ # # External PostgreSQL configuration
326
+ # # All of these values are only used when postgresql.enabled is set to false
327
+ # # @param postgresqlExternal.host Database host
328
+ # # @param postgresqlExternal.port Database port number
329
+ # # @param postgresqlExternal.user Non-root username for Invenio
330
+ # # @param postgresqlExternal.password Password for the non-root username for Invenio
331
+ # # @param postgresqlExternal.database Invenio instance database name
332
+ # # @param postgresqlExternal.existingSecret Name of an existing secret resource containing the database credentials
333
+ # # @param postgresqlExternal.existingSecretPasswordKey Name of an existing secret key containing the database credentials
334
+ # #
335
+ postgresqlExternal :
336
+ host : " "
337
+ port : 5432
338
+ user : postgres
339
+ database : mastodon
340
+ password : " "
341
+ existingSecret : " "
342
+ existingSecretPasswordKey : " db-password"
305
343
306
344
opensearch :
307
345
enabled : true
0 commit comments