mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 07:41:05 +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>
83 lines
2.1 KiB
JSON
83 lines
2.1 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 HAProxy replicas",
|
|
"default": 2
|
|
},
|
|
"httpAndHttps": {
|
|
"type": "object",
|
|
"properties": {
|
|
"mode": {
|
|
"type": "string",
|
|
"description": "Mode for balancer. Allowed values: `tcp` and `tcp-with-proxy`",
|
|
"default": "tcp",
|
|
"enum": [
|
|
"tcp",
|
|
"tcp-with-proxy"
|
|
]
|
|
},
|
|
"targetPorts": {
|
|
"type": "object",
|
|
"properties": {
|
|
"http": {
|
|
"type": "number",
|
|
"description": "HTTP port number.",
|
|
"default": 80
|
|
},
|
|
"https": {
|
|
"type": "number",
|
|
"description": "HTTPS port number.",
|
|
"default": 443
|
|
}
|
|
}
|
|
},
|
|
"endpoints": {
|
|
"type": "array",
|
|
"description": "Endpoint addresses list",
|
|
"default": [],
|
|
"items": {}
|
|
}
|
|
}
|
|
},
|
|
"whitelistHTTP": {
|
|
"type": "boolean",
|
|
"description": "Secure HTTP by enabling client networks whitelisting",
|
|
"default": false
|
|
},
|
|
"whitelist": {
|
|
"type": "array",
|
|
"description": "List of client networks",
|
|
"default": [],
|
|
"items": {}
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Explicit CPU and memory configuration for each TCP Balancer 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"
|
|
]
|
|
}
|
|
}
|
|
}
|