feat: add kubernetes deployment with kustomize (#258)

Signed-off-by: Guilhem Lettron <guilhem@barpilot.io>
This commit is contained in:
Guilhem Lettron
2024-04-24 21:01:17 +02:00
committed by GitHub
parent e4bbd756f0
commit a3a3d367ea
6 changed files with 164 additions and 0 deletions

15
deploy/pvc.yaml Normal file
View File

@ -0,0 +1,15 @@
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: opengist-data
labels:
app.kubernetes.io/name: opengist
app.kubernetes.io/component: data
spec:
resources:
requests:
storage: 1Gi
volumeMode: Filesystem
accessModes:
- ReadWriteOnce