feat: add .gitignore and apps/template for new apps

This commit is contained in:
2026-04-01 16:32:59 +08:00
parent 98cd6b71cb
commit 19342c6821
10 changed files with 292 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# 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}}