File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ metadata:
66resources :
77 - prod/cnpg.yaml
88 - prod/httpproxy.yaml
9+ - prod/pv.yaml
910helmCharts :
1011 - name : penpot
1112 version : " 0.29.0"
Original file line number Diff line number Diff line change 1+ ---
2+ apiVersion : v1
3+ kind : PersistentVolume
4+ metadata :
5+ name : penpot-data-assets
6+ spec :
7+ capacity :
8+ storage : 20Gi
9+ accessModes :
10+ - ReadWriteMany
11+ persistentVolumeReclaimPolicy : Retain
12+ storageClassName : local-path
13+ hostPath :
14+ path : /path/to/your/local/path/penpot-data-assets
15+ ---
16+ apiVersion : v1
17+ kind : PersistentVolume
18+ metadata :
19+ name : penpot-data-exporter
20+ spec :
21+ capacity :
22+ storage : 20Gi
23+ accessModes :
24+ - ReadWriteMany
25+ persistentVolumeReclaimPolicy : Retain
26+ storageClassName : local-path
27+ hostPath :
28+ path : /path/to/your/local/path/penpot-data-exporter
You can’t perform that action at this time.
0 commit comments