mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 08:17:59 +00:00
Add new options: `host` and `externalIPs`. Automatic password generation Provide resource-view to dashboard for getting connection URLs Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
29 lines
784 B
JSON
29 lines
784 B
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.",
|
|
"default": "[]",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
} |