Fix value for image type to reflect the deprecated status of the split images and use unified by default

Signed-off-by: Isaiah Olson <isaiah@olson-network.com>
This commit is contained in:
Isaiah Olson
2025-09-15 01:16:11 -05:00
parent a3be02132d
commit 1a4e979e63
3 changed files with 12 additions and 12 deletions

View File

@@ -174,12 +174,12 @@ For Cozystack-specific issues, consult the Cozystack documentation or support ch
### FoundationDB configuration
| Name | Description | Type | Value |
| ---------------------------- | ------------------------------------------------------------------ | ---------- | ------- |
| `customParameters` | Custom parameters to pass to FoundationDB | `[]string` | `[]` |
| `imageType` | Container image deployment type (split recommended for production) | `string` | `split` |
| `securityContext` | Security context for containers | `object` | `{}` |
| `securityContext.runAsUser` | User ID to run the container | `int` | `4059` |
| `securityContext.runAsGroup` | Group ID to run the container | `int` | `4059` |
| `automaticReplacements` | Enable automatic pod replacements | `bool` | `true` |
| Name | Description | Type | Value |
| ---------------------------- | ----------------------------------------- | ---------- | --------- |
| `customParameters` | Custom parameters to pass to FoundationDB | `[]string` | `[]` |
| `imageType` | Container image deployment type | `string` | `unified` |
| `securityContext` | Security context for containers | `object` | `{}` |
| `securityContext.runAsUser` | User ID to run the container | `int` | `4059` |
| `securityContext.runAsGroup` | Group ID to run the container | `int` | `4059` |
| `automaticReplacements` | Enable automatic pod replacements | `bool` | `true` |

View File

@@ -186,9 +186,9 @@
}
},
"imageType": {
"description": "Container image deployment type (split recommended for production)",
"description": "Container image deployment type",
"type": "string",
"default": "split",
"default": "unified",
"enum": [
"unified",
"split"

View File

@@ -77,8 +77,8 @@ customParameters: []
# Example:
# - knob_disable_posix_kernel_aio=1
## @param imageType {string enum:"unified,split"} Container image deployment type (split recommended for production)
imageType: "split"
## @param imageType {string enum:"unified,split"} Container image deployment type
imageType: "unified"
## @param securityContext {securityContext} Security context for containers
## @field securityContext.runAsUser {int} User ID to run the container