mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 08:17:59 +00:00
Signed-off-by: Andrei Kvapil <kvapss@gmail.com> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
82 lines
3.0 KiB
JSON
82 lines
3.0 KiB
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"host": {
|
|
"type": "string",
|
|
"description": "The hostname used to access the Kubernetes cluster externally (defaults to using the cluster name as a subdomain for the tenant host).",
|
|
"default": ""
|
|
},
|
|
"controlPlane": {
|
|
"type": "object",
|
|
"properties": {
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of replicas for Kubernetes contorl-plane components",
|
|
"default": 2
|
|
}
|
|
}
|
|
},
|
|
"storageClass": {
|
|
"type": "string",
|
|
"description": "StorageClass used to store user data",
|
|
"default": "replicated"
|
|
},
|
|
"addons": {
|
|
"type": "object",
|
|
"properties": {
|
|
"certManager": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enables the cert-manager",
|
|
"default": false
|
|
},
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
}
|
|
}
|
|
},
|
|
"ingressNginx": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enable Ingress-NGINX controller (expect nodes with 'ingress-nginx' role)",
|
|
"default": false
|
|
},
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
},
|
|
"hosts": {
|
|
"type": "array",
|
|
"description": "List of domain names that should be passed through to the cluster by upper cluster",
|
|
"default": [],
|
|
"items": {}
|
|
}
|
|
}
|
|
},
|
|
"fluxcd": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enables Flux CD",
|
|
"default": false
|
|
},
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |