summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-11 16:27:07 +0300
committerPaul Buetow <paul@buetow.org>2025-08-11 16:27:07 +0300
commitaa386405b19af62db7e5735ba0ae4f2781edbe9e (patch)
treea12ef949ae55ee0a9c45630933623fe26d59b9ea
parentc3e3248e949df1fe1118b91efa02e2bfa74108f4 (diff)
debug
-rw-r--r--f3s/radicale/helm-chart/templates/deployment.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/f3s/radicale/helm-chart/templates/deployment.yaml b/f3s/radicale/helm-chart/templates/deployment.yaml
index f5f2f6e..a73e6c8 100644
--- a/f3s/radicale/helm-chart/templates/deployment.yaml
+++ b/f3s/radicale/helm-chart/templates/deployment.yaml
@@ -13,6 +13,24 @@ spec:
labels:
app: radicale
spec:
+ initContainers:
+ - name: debug-auth-and-mounts
+ image: busybox:1.36
+ command: ["/bin/sh", "-c"]
+ args:
+ - |
+ set -eu
+ echo "=== /proc/mounts ===" && cat /proc/mounts || true
+ echo "=== df -h ===" && df -h || true
+ echo "=== ls -lna / ===" && ls -lna / || true
+ echo "=== ls -lna /auth ===" && ls -lna /auth || true
+ echo "=== ls -lna /collections ===" && ls -lna /collections || true
+ echo "=== find /auth (maxdepth 2) ===" && find /auth -maxdepth 2 -ls || true
+ volumeMounts:
+ - name: radicale-collections
+ mountPath: /collections
+ - name: radicale-auth
+ mountPath: /auth
containers:
- name: radicale
image: registry.lan.buetow.org:30001/radicale:latest