diff --git a/packages/apps/redis/README.md b/packages/apps/redis/README.md index 555213cb..9b3af339 100644 --- a/packages/apps/redis/README.md +++ b/packages/apps/redis/README.md @@ -15,7 +15,6 @@ Service utilizes the Spotahome Redis Operator for efficient management and orche | 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` | `""` | diff --git a/packages/apps/redis/templates/redisfailover.yaml b/packages/apps/redis/templates/redisfailover.yaml index 516d0682..20e91646 100644 --- a/packages/apps/redis/templates/redisfailover.yaml +++ b/packages/apps/redis/templates/redisfailover.yaml @@ -27,7 +27,7 @@ spec: replicas: 3 resources: {{- include "cozy-lib.resources.defaultingSanitize" (list .Values.resourcesPreset .Values.resources $) | nindent 6 }} redis: - image: {{ .Values.image }} + image: "redis:8.2.0" resources: {{- include "cozy-lib.resources.defaultingSanitize" (list .Values.resourcesPreset .Values.resources $) | nindent 6 }} replicas: {{ .Values.replicas }} {{- with .Values.size }} diff --git a/packages/apps/redis/values.schema.json b/packages/apps/redis/values.schema.json index 59a2f702..f8355848 100644 --- a/packages/apps/redis/values.schema.json +++ b/packages/apps/redis/values.schema.json @@ -12,11 +12,6 @@ "type": "boolean", "default": false }, - "image": { - "description": "Redis image in name:tag format", - "type": "string", - "default": "redis:8.2.0" - }, "replicas": { "description": "Number of Redis replicas.", "type": "integer", @@ -89,4 +84,4 @@ "default": "" } } -} \ No newline at end of file +} diff --git a/packages/apps/redis/values.yaml b/packages/apps/redis/values.yaml index 627871f5..87b01a57 100644 --- a/packages/apps/redis/values.yaml +++ b/packages/apps/redis/values.yaml @@ -15,9 +15,6 @@ ## @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. replicas: 2