mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-19 20:10:04 +00:00
- Change wording for `resources` and `resourcesPreset` variables. - Explain and give exampls of other object-type variables, if their child fields are not annotated. - Fix a few typos, improve wording. - Bump all application charts to ensure that new texts are shown immediately after updating Cozystack. Co-authored-by: Andrei Kvapil <kvapss@gmail.com> Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
50 lines
1.6 KiB
JSON
50 lines
1.6 KiB
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"external": {
|
|
"type": "boolean",
|
|
"description": "Enable external access from outside the cluster",
|
|
"default": false
|
|
},
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of VPN server replicas",
|
|
"default": 2
|
|
},
|
|
"host": {
|
|
"type": "string",
|
|
"description": "Host used to substitute into generated URLs",
|
|
"default": ""
|
|
},
|
|
"externalIPs": {
|
|
"type": "array",
|
|
"description": "List of externalIPs for service. Optional. If not specified will use LoadBalancer service by default.",
|
|
"default": "[]",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Explicit CPU and memory configuration for each VPN server replica. When left empty, the preset defined in `resourcesPreset` is applied.",
|
|
"default": {}
|
|
},
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Default sizing preset used when `resources` is omitted. Allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge.",
|
|
"default": "nano",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
}
|
|
}
|
|
}
|