Skip to content

Commit 6b68f00

Browse files
committed
added pv
1 parent fc92c83 commit 6b68f00

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

apps/penpot/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ metadata:
66
resources:
77
- prod/cnpg.yaml
88
- prod/httpproxy.yaml
9+
- prod/pv.yaml
910
helmCharts:
1011
- name: penpot
1112
version: "0.29.0"

apps/penpot/prod/pv.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

0 commit comments

Comments
 (0)