diff --git a/packages/apps/foundationdb/README.md b/packages/apps/foundationdb/README.md index f93c8e06..4790e054 100644 --- a/packages/apps/foundationdb/README.md +++ b/packages/apps/foundationdb/README.md @@ -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` | diff --git a/packages/apps/foundationdb/values.schema.json b/packages/apps/foundationdb/values.schema.json index 4b4b9d58..c2734b69 100644 --- a/packages/apps/foundationdb/values.schema.json +++ b/packages/apps/foundationdb/values.schema.json @@ -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" diff --git a/packages/apps/foundationdb/values.yaml b/packages/apps/foundationdb/values.yaml index 55c29752..4c061409 100644 --- a/packages/apps/foundationdb/values.yaml +++ b/packages/apps/foundationdb/values.yaml @@ -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