add hedgedoc

Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2025-07-27 13:04:20 -04:00
parent d4f0396eca
commit e53e349413
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
14 changed files with 406 additions and 0 deletions

46
hedgedoc/pvs.yaml Normal file
View file

@ -0,0 +1,46 @@
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: hedgedoc-uploads-pv
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
iscsi:
targetPortal: truenas.local.gwg313.xyz:3260
iqn: iqn.2005-10.org.freenas.ctl:hedgedoc-data
lun: 0
fsType: ext4
chapAuthDiscovery: true
chapAuthSession: true
secretRef:
name: hedgedoc-iscsi-auth
claimRef:
namespace: hedgedoc
name: hedgedoc-uploads-pvc
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: hedgedoc-db-pv
spec:
capacity:
storage: 5Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
iscsi:
targetPortal: truenas.local.gwg313.xyz:3260
iqn: iqn.2005-10.org.freenas.ctl:hedgedoc-database
lun: 1
fsType: ext4
chapAuthDiscovery: true
chapAuthSession: true
secretRef:
name: hedgedoc-iscsi-auth
claimRef:
namespace: hedgedoc
name: hedgedoc-db-pvc