mirror of
https://github.com/bitinflow/laravel-docker-k8s.git
synced 2026-03-13 13:35:52 +00:00
28 lines
404 B
YAML
Executable File
28 lines
404 B
YAML
Executable File
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: local-pv-1
|
|
labels:
|
|
type: local
|
|
spec:
|
|
capacity:
|
|
storage: 5Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
hostPath:
|
|
path: /tmp/data/pv-1
|
|
---
|
|
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: local-pv-2
|
|
labels:
|
|
type: local
|
|
spec:
|
|
capacity:
|
|
storage: 5Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
hostPath:
|
|
path: /tmp/data/pv-2
|