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