mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
Provide the oportunity to specify StroageClass in applications Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
26 lines
693 B
JSON
26 lines
693 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": ""
|
|
}
|
|
}
|
|
} |