homelab/kubernetes/apps/production/searxng/deployment.yaml
Liam 767985e5d5
Some checks failed
Check Kubernetes YAMLs / scan (push) Failing after 21s
feat(apps): add searxng
2024-09-24 07:01:24 +01:00

30 lines
624 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: searxng
namespace: public-services
spec:
replicas: 1
selector:
matchLabels:
app: searxng
template:
metadata:
labels:
app: searxng
spec:
containers:
- name: searxng
image: docker.io/searxng/searxng:2024.9.23-6be56aee1
ports:
- containerPort: 8080
env:
- name: SEARXNG_BASE_URL
value: "https://search.fascinated.cc"
resources:
limits:
memory: "256Mi"
cpu: "500m"
restartPolicy: Always