From ad5a62578147605e27efc282efef39153b8d1794 Mon Sep 17 00:00:00 2001 From: Aniket Dubey <58386130+aniketwdubey@users.noreply.github.com> Date: Tue, 20 Aug 2024 01:37:51 +0530 Subject: [PATCH] Allow using a PVC to store filer and master logs - changes in values.yaml (#5918) --- k8s/charts/seaweedfs/values.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/k8s/charts/seaweedfs/values.yaml b/k8s/charts/seaweedfs/values.yaml index e53fa5969..8d9674ebb 100644 --- a/k8s/charts/seaweedfs/values.yaml +++ b/k8s/charts/seaweedfs/values.yaml @@ -100,6 +100,15 @@ master: storageClass: "" hostPathPrefix: /ssd + # You may use ANY storage-class, example with local-path-provisioner + # Annotations are optional. + # logs: + # type: "persistentVolumeClaim" + # size: "24Ti" + # storageClass: "local-path-provisioner" + # annotations: + # "key": "value" + # You can also use emptyDir storage: # logs: # type: "emptyDir" @@ -535,6 +544,15 @@ filer: storageClass: "" hostPathPrefix: /storage + # You may use ANY storage-class, example with local-path-provisioner + # Annotations are optional. + # logs: + # type: "persistentVolumeClaim" + # size: "24Ti" + # storageClass: "local-path-provisioner" + # annotations: + # "key": "value" + # You can also use emptyDir storage: # logs: # type: "emptyDir"