surely it'll work now
Some checks failed
Check Kubernetes YAMLs / scan (push) Failing after 20s

This commit is contained in:
Lee 2024-09-24 07:55:14 +01:00
parent 6639673c00
commit 6318c34ad1

@ -1,13 +1,23 @@
apiVersion: v1 apiVersion: apps/v1
kind: Pod kind: Deployment
metadata: metadata:
name: searxng-redis name: searxng-redis
namespace: public-services namespace: public-services
spec: spec:
replicas: 1
selector:
matchLabels:
app: searxng-redis
template:
metadata:
labels:
app: searxng-redis
spec:
containers: containers:
- name: searxng-redis - name: searxng-redis
image: docker.io/valkey/valkey:8-alpine image: docker.io/valkey/valkey:8-alpine
command: ["valkey-server", "--save", "30", "1", "--loglevel", "warning"] command:
["valkey-server", "--save", "30", "1", "--loglevel", "warning"]
ports: ports:
- containerPort: 6379 - containerPort: 6379
volumeMounts: volumeMounts: