Files
cozystack/packages/apps/vpn/values.schema.json
Andrei Kvapil 9022b8bda8 Fix arrays in OpenAPI spec
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2025-07-18 02:54:33 +02:00

47 lines
1.5 KiB
JSON

{
"properties": {
"external": {
"default": false,
"description": "Enable external access from outside the cluster",
"type": "boolean"
},
"externalIPs": {
"default": [],
"description": "List of externalIPs for service. Optional. If not specified will use LoadBalancer service by default.",
"items": {},
"type": "array"
},
"host": {
"default": "",
"description": "Host used to substitute into generated URLs",
"type": "string"
},
"replicas": {
"default": 2,
"description": "Number of VPN server replicas",
"type": "number"
},
"resources": {
"default": {},
"description": "Explicit CPU and memory configuration for each VPN server 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"
]
}
},
"title": "Chart Values",
"type": "object"
}