summaryrefslogtreecommitdiff
path: root/f3s
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-12 23:14:56 +0300
committerPaul Buetow <paul@buetow.org>2025-08-12 23:14:56 +0300
commit32d89017a08fd5f9b098602441b5c7291d7f9692 (patch)
treee29287cc32666dcb454313be8ed20ff87ab3bc19 /f3s
parent5e3dd4a4f513c46147e0e2b992445deada774618 (diff)
adding linkding
Diffstat (limited to 'f3s')
-rw-r--r--f3s/radicale/helm-chart/templates/deployment.yaml19
1 files changed, 19 insertions, 0 deletions
diff --git a/f3s/radicale/helm-chart/templates/deployment.yaml b/f3s/radicale/helm-chart/templates/deployment.yaml
index f5f2f6e..725fcba 100644
--- a/f3s/radicale/helm-chart/templates/deployment.yaml
+++ b/f3s/radicale/helm-chart/templates/deployment.yaml
@@ -13,6 +13,25 @@ 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 || true
+ [ -f /auth/htpasswd ] && { echo "=== stat /auth/htpasswd ==="; stat /auth/htpasswd || true; } || echo "htpasswd missing in init"
+ volumeMounts:
+ - name: radicale-collections
+ mountPath: /collections
+ - name: radicale-auth
+ mountPath: /auth
containers:
- name: radicale
image: registry.lan.buetow.org:30001/radicale:latest