now?!??!!?!!?!?!?!!?!?!?!?!?!
Some checks failed
Check Kubernetes YAMLs / scan (push) Failing after 17s

This commit is contained in:
Lee 2024-09-24 07:46:33 +01:00
parent 861bff92ed
commit 6639673c00
3 changed files with 16 additions and 0 deletions

@ -5,6 +5,7 @@ namespace: public-services
resources:
- ./redis/pvc.yaml
- ./redis/redis.yaml
- ./redis/service.yaml
- config.yaml
- sealed-secrets.yaml
- deployment.yaml

@ -8,6 +8,8 @@ spec:
- name: searxng-redis
image: docker.io/valkey/valkey:8-alpine
command: ["valkey-server", "--save", "30", "1", "--loglevel", "warning"]
ports:
- containerPort: 6379
volumeMounts:
- name: redis-data
mountPath: /data

@ -0,0 +1,13 @@
---
apiVersion: v1
kind: Service
metadata:
name: searxng-redis
namespace: public-services
spec:
type: ClusterIP
ports:
- port: 6379
targetPort: 6379
selector:
app: searxng-redis