mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-19 17:10:06 +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. Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com>
102 lines
3.6 KiB
JSON
102 lines
3.6 KiB
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"size": {
|
|
"type": "string",
|
|
"description": "Size of Persistent Volume for data",
|
|
"default": "10Gi"
|
|
},
|
|
"logStorageSize": {
|
|
"type": "string",
|
|
"description": "Size of Persistent Volume for logs",
|
|
"default": "2Gi"
|
|
},
|
|
"shards": {
|
|
"type": "number",
|
|
"description": "Number of Clickhouse shards",
|
|
"default": 1
|
|
},
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of Clickhouse replicas",
|
|
"default": 2
|
|
},
|
|
"storageClass": {
|
|
"type": "string",
|
|
"description": "StorageClass used to store the data",
|
|
"default": ""
|
|
},
|
|
"logTTL": {
|
|
"type": "number",
|
|
"description": "TTL (expiration time) for query_log and query_thread_log",
|
|
"default": 15
|
|
},
|
|
"backup": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enable periodic backups",
|
|
"default": false
|
|
},
|
|
"s3Region": {
|
|
"type": "string",
|
|
"description": "AWS S3 region where backups are stored",
|
|
"default": "us-east-1"
|
|
},
|
|
"s3Bucket": {
|
|
"type": "string",
|
|
"description": "S3 bucket used for storing backups",
|
|
"default": "s3.example.org/clickhouse-backups"
|
|
},
|
|
"schedule": {
|
|
"type": "string",
|
|
"description": "Cron schedule for automated backups",
|
|
"default": "0 2 * * *"
|
|
},
|
|
"cleanupStrategy": {
|
|
"type": "string",
|
|
"description": "Retention strategy for cleaning up old backups",
|
|
"default": "--keep-last=3 --keep-daily=3 --keep-within-weekly=1m"
|
|
},
|
|
"s3AccessKey": {
|
|
"type": "string",
|
|
"description": "Access key for S3, used for authentication",
|
|
"default": "oobaiRus9pah8PhohL1ThaeTa4UVa7gu"
|
|
},
|
|
"s3SecretKey": {
|
|
"type": "string",
|
|
"description": "Secret key for S3, used for authentication",
|
|
"default": "ju3eum4dekeich9ahM1te8waeGai0oog"
|
|
},
|
|
"resticPassword": {
|
|
"type": "string",
|
|
"description": "Password for Restic backup encryption",
|
|
"default": "ChaXoveekoh6eigh4siesheeda2quai0"
|
|
}
|
|
}
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Explicit CPU and memory configuration for each ClickHouse 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": "small",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
}
|
|
}
|
|
}
|