From 1bf5615e69837dc4e5c9ee3b5d591ef91f5950c6 Mon Sep 17 00:00:00 2001 From: Plux Stahre Date: Sun, 29 Sep 2024 03:44:30 +0200 Subject: [PATCH] Update k8s-cronjob.md Add back the explanation comments. --- examples/k8s-cronjob.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/k8s-cronjob.md b/examples/k8s-cronjob.md index 1c4c739..3d3c203 100644 --- a/examples/k8s-cronjob.md +++ b/examples/k8s-cronjob.md @@ -38,6 +38,10 @@ spec: value: "200" - name: FF_MAX_FOLLOWERS value: "10" + # Add any other options below as described in in the README.md file + + # If you don't want to use a PVC you may comment the next two lines, but that will significantly + # affect performance, and is NOT recommended - name: FF_STATE_DIR value: "/data/" - name: FF_SERVER @@ -50,6 +54,8 @@ spec: secretKeyRef: name: fedifetcher key: token + # Comment the lines below if you do not use a PVC, but that will significantly + # affect performance and is NOT recommended volumeMounts: - name: fedifetcher-storage mountPath: /data