mirror of
https://github.com/gwg313/homelab-gitops.git
synced 2026-06-05 21:41:03 +00:00
22 lines
484 B
YAML
22 lines
484 B
YAML
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: karakeep-data-pv
|
|
spec:
|
|
capacity:
|
|
storage: 5Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
persistentVolumeReclaimPolicy: Retain
|
|
iscsi:
|
|
targetPortal: truenas.local.gwg313.xyz:3260
|
|
iqn: iqn.2005-10.org.freenas.ctl:karakeep-data
|
|
lun: 0
|
|
fsType: ext4
|
|
chapAuthDiscovery: true
|
|
chapAuthSession: true
|
|
secretRef:
|
|
name: karakeep-iscsi-auth
|
|
claimRef:
|
|
namespace: karakeep
|
|
name: karakeep-data-pvc
|