Files
k3s/apps/template/manifests/app-pvc.yaml

17 lines
362 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# PVC 範本 - Longhorn 儲存
# 使用方式:將 {{APP_NAME}} 替換為你的應用名稱
# 儲存大小可調整1Gi, 5Gi, 10Gi...
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: {{APP_NAME}}-pvc
namespace: default
spec:
accessModes:
- ReadWriteOnce
storageClassName: longhorn
resources:
requests:
storage: {{SIZE|5Gi}}