First Version of Infra-Kubernetes for Hideyoshi.com

Implements Postgres Database and SpringBoot docker
This commit is contained in:
2022-05-09 22:09:01 -03:00
commit 517951a0c7
7 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
kind: PersistentVolume
apiVersion: v1
metadata:
name: postgres-pv-volume
labels:
type: local
app: postgres
spec:
storageClassName: manual
capacity:
storage: 5Gi
accessModes:
- ReadWriteMany
hostPath:
path: "/mnt/data"
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: postgres-pv-claim
labels:
app: postgres
spec:
storageClassName: manual
accessModes:
- ReadWriteMany
resources:
requests:
storage: 5Gi