mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-04-05 10:05:54 +00:00
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"etcd": {
|
|
"description": "Deploy own Etcd cluster",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"host": {
|
|
"description": "The hostname used to access tenant services (defaults to using the tenant name as a subdomain for it's parent tenant host).",
|
|
"type": "string"
|
|
},
|
|
"ingress": {
|
|
"description": "Deploy own Ingress Controller",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"isolated": {
|
|
"description": "Enforce tenant namespace with network policies, `true` by default",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"monitoring": {
|
|
"description": "Deploy own Monitoring Stack",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"resourceQuotas": {
|
|
"description": "Define resource quotas for the tenant",
|
|
"type": "object",
|
|
"default": {},
|
|
"additionalProperties": {
|
|
"pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
|
|
"anyOf": [
|
|
{
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
],
|
|
"x-kubernetes-int-or-string": true
|
|
}
|
|
},
|
|
"seaweedfs": {
|
|
"description": "Deploy own SeaweedFS",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
} |