fix searxng

This commit is contained in:
Roger Oriol
2026-07-04 00:35:17 +02:00
parent 54059cdb72
commit a567184347

View File

@@ -35,8 +35,13 @@ data:
port: 8080 port: 8080
ui: ui:
static_use_hash: true static_use_hash: true
redis: valkey:
url: redis://searxng-redis:6379/0 url: redis://searxng-redis:6379/0
engines:
- name: ahmia
disabled: true
- name: torch
disabled: true
--- ---
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
@@ -141,20 +146,16 @@ spec:
cpu: 100m cpu: 100m
memory: 128Mi memory: 128Mi
livenessProbe: livenessProbe:
httpGet: tcpSocket:
path: /healthz
port: 8080 port: 8080
scheme: HTTP
initialDelaySeconds: 30 initialDelaySeconds: 30
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 10 periodSeconds: 10
successThreshold: 1 successThreshold: 1
failureThreshold: 6 failureThreshold: 6
readinessProbe: readinessProbe:
httpGet: tcpSocket:
path: /healthz
port: 8080 port: 8080
scheme: HTTP
initialDelaySeconds: 5 initialDelaySeconds: 5
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 10 periodSeconds: 10