add ingress, pvc, svc and deployment for searxng
Validate Kubernetes Manifests / kubeconform (pull_request) Successful in 18s

This commit is contained in:
2025-12-28 10:46:11 +05:30
parent 6f586def7d
commit d12f160ccd
4 changed files with 88 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: searxng
namespace: tools
spec:
strategy:
type: Recreate
replicas: 1
selector:
matchLabels:
app: searxng
template:
metadata:
labels:
app: searxng
spec:
containers:
- name: searxng
image: searxng/searxng@sha256:624151caf80802e85fe145c70315b3ce47721d720b64f4bd4d1867afa82d0023
ports:
- containerPort: 8080
env:
- name: "INSTANCE_NAME"
value: "searxng"
- name: BASE_URL
value: "sear.akshun-lab.cc"
volumeMounts:
- name: searxng
mountPath: /etc/searxng
volumes:
- name: searxng
persistentVolumeClaim:
claimName: searxng-longhorn