mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2025-02-17 14:40:28 +08:00
34 lines
541 B
YAML
Executable File
34 lines
541 B
YAML
Executable File
---
|
|
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: infra-mysql-pv
|
|
labels:
|
|
infra-pvname: infra-mysql-pv
|
|
spec:
|
|
capacity:
|
|
storage: 10Gi
|
|
accessModes:
|
|
- ReadWriteMany
|
|
hostPath:
|
|
path: /data/k8s/infra/mysql
|
|
persistentVolumeReclaimPolicy: Retain
|
|
---
|
|
kind: PersistentVolumeClaim
|
|
apiVersion: v1
|
|
metadata:
|
|
name: infra-mysql-pvc
|
|
namespace: infra
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 10Gi
|
|
selector:
|
|
matchLabels:
|
|
infra-pvname: infra-mysql-pv
|
|
|
|
|
|
|