homelab/kubernetes/apps/production/searxng/deployment.yaml

32 lines
670 B
YAML
Raw Normal View History

2024-09-24 06:01:24 +00:00
---
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:
2024-09-24 06:07:51 +00:00
requests:
2024-09-24 06:01:24 +00:00
memory: "256Mi"
2024-09-24 06:07:51 +00:00
cpu: "100m"
limits:
memory: "512Mi"
2024-09-24 06:01:24 +00:00
cpu: "500m"