Skip to content

Commit c7d2547

Browse files
committed
update values
1 parent fa62d2f commit c7d2547

File tree

1 file changed

+40
-2
lines changed

1 file changed

+40
-2
lines changed

charts/invenio/values.yaml

+40-2
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,28 @@ rabbitmq:
278278
cpu: "1"
279279
memory: 2Gi
280280

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"
282303

283304
flower:
284305
enabled: true
@@ -301,7 +322,24 @@ postgresql:
301322
username: invenio
302323
database: invenio
303324

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"
305343

306344
opensearch:
307345
enabled: true

0 commit comments

Comments
 (0)