mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
Signed-off-by: Andrei Kvapil <kvapss@gmail.com> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Updated RabbitMQ chart version to 0.4.0 and application version to 3.13.2. - Added new configuration options for users and virtual hosts in the application. - Introduced a new Kubernetes Role for managing access to secrets and services. - Enhanced RabbitMQ configuration for automated user and permission management. - **Documentation** - Improved README with a section on configuration parameters for better user guidance. - **Chores** - Added a new YAML configuration file for comprehensive RabbitMQ cluster management. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
42 lines
788 B
YAML
42 lines
788 B
YAML
## @section Common parameters
|
|
|
|
## @param external Enable external access from outside the cluster
|
|
## @param size Persistent Volume size
|
|
## @param replicas Number of RabbitMQ replicas
|
|
## @param storageClass StorageClass used to store the data
|
|
##
|
|
external: false
|
|
size: 10Gi
|
|
replicas: 3
|
|
storageClass: ""
|
|
|
|
## @section Configuration parameters
|
|
|
|
## @param users [object] Users configuration
|
|
## Example:
|
|
## users:
|
|
## user1:
|
|
## password: strongpassword
|
|
## user2:
|
|
## password: hackme
|
|
## user3:
|
|
## password: testtest
|
|
##
|
|
users: {}
|
|
|
|
## @param vhosts Virtual Hosts configuration
|
|
## Example:
|
|
## vhosts:
|
|
## myapp:
|
|
## roles:
|
|
## admin:
|
|
## - user1
|
|
## - user2
|
|
## readonly:
|
|
## - user3
|
|
## test:
|
|
## roles:
|
|
## admin:
|
|
## - user3
|
|
vhosts: {}
|