From 9bab24a5c7c96e03483ec6fb16311a16a678bb72 Mon Sep 17 00:00:00 2001 From: Junwei Zhao Date: Mon, 8 Dec 2025 22:07:12 +1100 Subject: [PATCH] Update searxng --- home-apps/searxng.yaml | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/home-apps/searxng.yaml b/home-apps/searxng.yaml index f007837..1574e2d 100644 --- a/home-apps/searxng.yaml +++ b/home-apps/searxng.yaml @@ -1,12 +1,26 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: searxng-nfs-pv +spec: + capacity: + storage: 10Gi + accessModes: + - ReadWriteOnce + nfs: + server: 192.168.1.5 + path: "/fs/1000/nfs/k8s/searxng" +--- + apiVersion: v1 kind: PersistentVolumeClaim metadata: namespace: home-apps - name: searxng-pvc + name: searxng-nfs-pvc spec: accessModes: - ReadWriteOnce - storageClassName: nfs-client + storageClassName: "" resources: requests: storage: 10Gi @@ -62,7 +76,7 @@ spec: volumes: - name: config persistentVolumeClaim: - claimName: searxng-pvc + claimName: searxng-nfs-pvc --- apiVersion: networking.k8s.io/v1