mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-19 19:10:32 +00:00
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"properties": {
|
|
"authEnabled": {
|
|
"default": true,
|
|
"description": "Enable password generation",
|
|
"type": "boolean"
|
|
},
|
|
"external": {
|
|
"default": false,
|
|
"description": "Enable external access from outside the cluster",
|
|
"type": "boolean"
|
|
},
|
|
"replicas": {
|
|
"default": 2,
|
|
"description": "Number of Redis replicas",
|
|
"type": "number"
|
|
},
|
|
"resources": {
|
|
"default": {},
|
|
"description": "Explicit CPU and memory configuration for each Redis replica. When left empty, the preset defined in `resourcesPreset` is applied.",
|
|
"type": "object"
|
|
},
|
|
"resourcesPreset": {
|
|
"default": "nano",
|
|
"description": "Default sizing preset used when `resources` is omitted. Allowed values: nano, micro, small, medium, large, xlarge, 2xlarge.",
|
|
"type": "string",
|
|
"enum": [
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
},
|
|
"size": {
|
|
"default": "1Gi",
|
|
"description": "Persistent Volume size",
|
|
"type": "string"
|
|
},
|
|
"storageClass": {
|
|
"default": "",
|
|
"description": "StorageClass used to store the data",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"title": "Chart Values",
|
|
"type": "object"
|
|
}
|