This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
homelab/kubernetes/apps/production/searxng/redis/redis.yaml

24 lines
555 B
YAML
Raw Normal View History

2024-09-24 07:01:24 +01:00
apiVersion: v1
kind: Pod
metadata:
name: searxng-redis
namespace: public-services
spec:
containers:
2024-09-24 07:32:28 +01:00
- name: searxng-redis
2024-09-24 07:01:24 +01:00
image: docker.io/valkey/valkey:8-alpine
command: ["valkey-server", "--save", "30", "1", "--loglevel", "warning"]
2024-09-24 07:46:33 +01:00
ports:
- containerPort: 6379
2024-09-24 07:01:24 +01:00
volumeMounts:
- name: redis-data
mountPath: /data
resources:
limits:
2024-09-24 07:40:23 +01:00
memory: "128Mi"
cpu: "100m"
2024-09-24 07:01:24 +01:00
volumes:
- name: redis-data
persistentVolumeClaim:
claimName: searxng-redis-pvc