mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 09:16:40 +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** - Enhanced database user management with role definitions for `admin` and `readonly` users. - Introduced support for additional environment variables in the MariaDB operator deployment. - Added new RBAC roles for viewing and editing MariaDB resources. - **Changes** - Updated configuration structure for database and user management, shifting from arrays to objects. - Improved webhook certificate management with revision history control. - Updated image repository for the MariaDB operator. - **Bug Fixes** - Adjusted permissions in RBAC configuration for better security and resource management. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
## @section Common parameters
|
|
|
|
## @param external Enable external access from outside the cluster
|
|
## @param size Persistent Volume size
|
|
## @param replicas Number of MariaDB replicas
|
|
## @param storageClass StorageClass used to store the data
|
|
##
|
|
external: false
|
|
size: 10Gi
|
|
replicas: 2
|
|
storageClass: ""
|
|
|
|
## @section Configuration parameters
|
|
|
|
## @param users [object] Users configuration
|
|
## Example:
|
|
## users:
|
|
## user1:
|
|
## maxUserConnections: 1000
|
|
## password: hackme
|
|
## user2:
|
|
## maxUserConnections: 1000
|
|
## password: hackme
|
|
##
|
|
users: {}
|
|
|
|
## @param databases [object] Databases configuration
|
|
## Example:
|
|
## databases:
|
|
## myapp1:
|
|
## roles:
|
|
## admin:
|
|
## - user1
|
|
## readonly:
|
|
## - user2
|
|
databases: {}
|
|
|
|
## @section Backup parameters
|
|
|
|
## @param backup.enabled Enable pereiodic backups
|
|
## @param backup.s3Region The AWS S3 region where backups are stored
|
|
## @param backup.s3Bucket The S3 bucket used for storing backups
|
|
## @param backup.schedule Cron schedule for automated backups
|
|
## @param backup.cleanupStrategy The strategy for cleaning up old backups
|
|
## @param backup.s3AccessKey The access key for S3, used for authentication
|
|
## @param backup.s3SecretKey The secret key for S3, used for authentication
|
|
## @param backup.resticPassword The password for Restic backup encryption
|
|
backup:
|
|
enabled: false
|
|
s3Region: us-east-1
|
|
s3Bucket: s3.example.org/postgres-backups
|
|
schedule: "0 2 * * *"
|
|
cleanupStrategy: "--keep-last=3 --keep-daily=3 --keep-within-weekly=1m"
|
|
s3AccessKey: oobaiRus9pah8PhohL1ThaeTa4UVa7gu
|
|
s3SecretKey: ju3eum4dekeich9ahM1te8waeGai0oog
|
|
resticPassword: ChaXoveekoh6eigh4siesheeda2quai0
|