mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 08:17:59 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes - **New Features** - Introduced new configuration parameters for Jetstream, including `jetstream.size` and `jetstream.enabled`, enhancing storage and functionality options. - Added support for merging additional configurations with `config.merge` and `config.resolver`. - **Bug Fixes** - Improved password generation and configuration merging logic for better flexibility in deployments. - **Version Updates** - NATS application version updated from `0.3.1` to `0.4.0`. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
51 lines
1.5 KiB
JSON
51 lines
1.5 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": "Persistent Volume size for NATS",
|
|
"default": 2
|
|
},
|
|
"storageClass": {
|
|
"type": "string",
|
|
"description": "StorageClass used to store the data",
|
|
"default": ""
|
|
},
|
|
"jetstream": {
|
|
"type": "object",
|
|
"properties": {
|
|
"size": {
|
|
"type": "string",
|
|
"description": "Jetstream persistent storage size",
|
|
"default": "10Gi"
|
|
},
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "Enable or disable Jetstream",
|
|
"default": true
|
|
}
|
|
}
|
|
},
|
|
"config": {
|
|
"type": "object",
|
|
"properties": {
|
|
"merge": {
|
|
"type": "object",
|
|
"description": "Additional configuration to merge into NATS config",
|
|
"default": {}
|
|
},
|
|
"resolver": {
|
|
"type": "object",
|
|
"description": "Additional configuration to merge into NATS config",
|
|
"default": {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |