File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed
Expand file tree Collapse file tree 3 files changed +32
-1
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 11apiVersion : argoproj.io/v1alpha1
22kind : Application
33metadata :
4- name : penpot
4+ name : penpot-sandbox
55 namespace : argocd
66 annotations :
77 argocd.argoproj.io/sync-wave : " 2"
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+ namespace : penpot
7+ spec :
8+ capacity :
9+ storage : 20Gi
10+ accessModes :
11+ - ReadWriteMany
12+ persistentVolumeReclaimPolicy : Retain
13+ storageClassName : local-path
14+ hostPath :
15+ path : /opt/data/assets
16+ ---
17+ apiVersion : v1
18+ kind : PersistentVolume
19+ metadata :
20+ name : penpot-data-exporter
21+ namespace : penpot
22+ spec :
23+ capacity :
24+ storage : 20Gi
25+ accessModes :
26+ - ReadWriteMany
27+ persistentVolumeReclaimPolicy : Retain
28+ storageClassName : local-path
29+ hostPath :
30+ path : /opt/data/exporter
You can’t perform that action at this time.
0 commit comments