mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 08:17:59 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced `authEnabled` parameter for enabling password generation in Redis. - Added authentication logic for Redis failover configuration. - **Bug Fixes** - Updated version of the Redis chart from `0.3.1` to `0.4.0`. - **Documentation** - Updated README to include the new `authEnabled` parameter description. - **Chores** - Incremented version numbers for multiple packages in the version map. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
31 lines
845 B
JSON
31 lines
845 B
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"external": {
|
|
"type": "boolean",
|
|
"description": "Enable external access from outside the cluster",
|
|
"default": false
|
|
},
|
|
"size": {
|
|
"type": "string",
|
|
"description": "Persistent Volume size",
|
|
"default": "1Gi"
|
|
},
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of Redis replicas",
|
|
"default": 2
|
|
},
|
|
"storageClass": {
|
|
"type": "string",
|
|
"description": "StorageClass used to store the data",
|
|
"default": ""
|
|
},
|
|
"authEnabled": {
|
|
"type": "boolean",
|
|
"description": "Enable password generation",
|
|
"default": true
|
|
}
|
|
}
|
|
} |