Add data group, kanban, postgres
This commit is contained in:
parent
091470892c
commit
3dac8f4ebc
8 changed files with 257 additions and 1 deletions
19
manifests/data/appdata.yaml
Normal file
19
manifests/data/appdata.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
apiVersion: v1
|
||||
kind: PersistentVolume
|
||||
metadata:
|
||||
name: appdata
|
||||
spec:
|
||||
capacity:
|
||||
storage: 100Gi
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
storageClassName: local
|
||||
hostPath:
|
||||
path: /var/local/appdata
|
||||
type: DirectoryOrCreate
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: postgres
|
||||
Loading…
Add table
Add a link
Reference in a new issue