Split manifests into infra/ and applications/

This commit is contained in:
2026-06-21 12:14:38 +02:00
parent 64e8bf7d78
commit c40577589d
360 changed files with 69 additions and 67 deletions

View File

@@ -0,0 +1,45 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: searxng
namespace: searxng
spec:
replicas: 1
selector:
matchLabels:
app: searxng
template:
metadata:
labels:
app: searxng
spec:
restartPolicy: Always
terminationGracePeriodSeconds: 10
enableServiceLinks: false
containers:
- name: searxng
image: searxng/searxng:latest
ports:
- containerPort: 8080
env:
- name: SEARXNG_BASE_URL
value: "https://search.jsme.be"
- name: SEARXNG_SECRET
valueFrom:
secretKeyRef:
name: searxng-secrets
key: SEARXNG_SECRET_KEY
resources:
requests:
cpu: 50m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
volumeMounts:
- name: data
mountPath: /etc/searxng
volumes:
- name: data
persistentVolumeClaim:
claimName: searxng-pvc