diff --git a/packages/apps/redis/README.md b/packages/apps/redis/README.md index 00f41d36..555213cb 100644 --- a/packages/apps/redis/README.md +++ b/packages/apps/redis/README.md @@ -13,16 +13,17 @@ Service utilizes the Spotahome Redis Operator for efficient management and orche ### Common parameters -| Name | Description | Type | Value | -| ------------------ | ------------------------------------------------------------------------------------------------------------------------------- | ---------- | ------- | -| `replicas` | Number of Redis replicas. | `int` | `2` | -| `resources` | Explicit CPU and memory configuration for each Redis replica. When omitted, the preset defined in `resourcesPreset` is applied. | `object` | `{}` | -| `resources.cpu` | CPU available to each replica. | `quantity` | `""` | -| `resources.memory` | Memory (RAM) available to each replica. | `quantity` | `""` | -| `resourcesPreset` | Default sizing preset used when `resources` is omitted. | `string` | `nano` | -| `size` | Persistent Volume Claim size available for application data. | `quantity` | `1Gi` | -| `storageClass` | StorageClass used to store the data. | `string` | `""` | -| `external` | Enable external access from outside the cluster. | `bool` | `false` | +| Name | Description | Type | Value | +| ------------------ | ------------------------------------------------------------------------------------------------------------------------------- | ---------- | ------------- | +| `image` | Redis image in name:tag format | `string` | `redis:8.2.0` | +| `replicas` | Number of Redis replicas. | `int` | `2` | +| `resources` | Explicit CPU and memory configuration for each Redis replica. When omitted, the preset defined in `resourcesPreset` is applied. | `object` | `{}` | +| `resources.cpu` | CPU available to each replica. | `quantity` | `""` | +| `resources.memory` | Memory (RAM) available to each replica. | `quantity` | `""` | +| `resourcesPreset` | Default sizing preset used when `resources` is omitted. | `string` | `nano` | +| `size` | Persistent Volume Claim size available for application data. | `quantity` | `1Gi` | +| `storageClass` | StorageClass used to store the data. | `string` | `""` | +| `external` | Enable external access from outside the cluster. | `bool` | `false` | ### Application-specific parameters diff --git a/packages/apps/redis/values.schema.json b/packages/apps/redis/values.schema.json index 8638be83..59a2f702 100644 --- a/packages/apps/redis/values.schema.json +++ b/packages/apps/redis/values.schema.json @@ -89,4 +89,4 @@ "default": "" } } -} +} \ No newline at end of file diff --git a/packages/apps/redis/values.yaml b/packages/apps/redis/values.yaml index 305f7c3e..627871f5 100644 --- a/packages/apps/redis/values.yaml +++ b/packages/apps/redis/values.yaml @@ -15,7 +15,7 @@ ## @value xlarge ## @value 2xlarge -## +## @param {string} image - Redis image in name:tag format image: "redis:8.2.0" ## @param {int} replicas - Number of Redis replicas.