From 3881601c4138996c92494aea6b8da5506cebe580 Mon Sep 17 00:00:00 2001 From: alex289 Date: Sun, 3 Sep 2023 12:24:58 +0200 Subject: [PATCH] fix: Redis deployment --- k8s-deployments/redis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/k8s-deployments/redis.yml b/k8s-deployments/redis.yml index 6735aad..4055e86 100644 --- a/k8s-deployments/redis.yml +++ b/k8s-deployments/redis.yml @@ -36,7 +36,9 @@ spec: value: "FLUSHDB,FLUSHALL" ports: - containerPort: 6379 - resources: - requests: - cpu: 100m - memory: 100Mi \ No newline at end of file + volumeMounts: + - name: redis-data + mountPath: /bitnami/redis/data + volumes: + - name: redis-data + emptyDir: {} \ No newline at end of file