Skip to content

Commit 69c4d34

Browse files
authored
Merge pull request #12 from ClubCedille/penpot-fix
added pv
2 parents fc92c83 + 31388f0 commit 69c4d34

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
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/penpot.argoapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: argoproj.io/v1alpha1
22
kind: Application
33
metadata:
4-
name: penpot
4+
name: penpot-sandbox
55
namespace: argocd
66
annotations:
77
argocd.argoproj.io/sync-wave: "2"

apps/penpot/prod/pv.yaml

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

0 commit comments

Comments
 (0)