mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 13:41:11 +00:00
248 lines
7.5 KiB
JSON
248 lines
7.5 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 control-plane components",
|
|
"default": 2
|
|
},
|
|
"apiServer": {
|
|
"type": "object",
|
|
"properties": {
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).",
|
|
"default": "small",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Resources",
|
|
"default": {}
|
|
}
|
|
}
|
|
},
|
|
"controllerManager": {
|
|
"type": "object",
|
|
"properties": {
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Resources",
|
|
"default": {}
|
|
},
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).",
|
|
"default": "micro",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"scheduler": {
|
|
"type": "object",
|
|
"properties": {
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).",
|
|
"default": "micro",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Resources",
|
|
"default": {}
|
|
}
|
|
}
|
|
},
|
|
"konnectivity": {
|
|
"type": "object",
|
|
"properties": {
|
|
"server": {
|
|
"type": "object",
|
|
"properties": {
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).",
|
|
"default": "micro",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Resources",
|
|
"default": {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"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": {}
|
|
}
|
|
}
|
|
},
|
|
"cilium": {
|
|
"type": "object",
|
|
"properties": {
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
}
|
|
}
|
|
},
|
|
"gatewayAPI": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enables the Gateway API",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"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": {}
|
|
}
|
|
}
|
|
},
|
|
"gpuOperator": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enables the gpu-operator",
|
|
"default": false
|
|
},
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
}
|
|
}
|
|
},
|
|
"fluxcd": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enables Flux CD",
|
|
"default": false
|
|
},
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
}
|
|
}
|
|
},
|
|
"monitoringAgents": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enables MonitoringAgents (fluentbit, vmagents for sending logs and metrics to storage) if tenant monitoring enabled, send to tenant storage, else to root storage",
|
|
"default": false
|
|
},
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
}
|
|
}
|
|
},
|
|
"verticalPodAutoscaler": {
|
|
"type": "object",
|
|
"properties": {
|
|
"valuesOverride": {
|
|
"type": "object",
|
|
"description": "Custom values to override",
|
|
"default": {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|