mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-07 05:50:32 +07:00
15 lines
272 B
YAML
15 lines
272 B
YAML
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: jenkins-pv
|
|
namespace: jenkins
|
|
spec:
|
|
storageClassName: jenkins-pv
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
capacity:
|
|
storage: 20Gi
|
|
persistentVolumeReclaimPolicy: Retain
|
|
hostPath:
|
|
path: /data/jenkins-volume/
|