Reset git history for making manifests public

This commit is contained in:
2026-06-01 11:06:25 +02:00
commit 2ab124916d
371 changed files with 41041 additions and 0 deletions

45
searxng/searxng.yaml Normal file
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