20 lines
355 B
YAML
20 lines
355 B
YAML
|
apiVersion: v1
|
||
|
kind: PersistentVolume
|
||
|
metadata:
|
||
|
name: jupyter-work-pv
|
||
|
spec:
|
||
|
accessModes:
|
||
|
- ReadWriteMany
|
||
|
capacity:
|
||
|
storage: 1Gi
|
||
|
hostPath:
|
||
|
path: ./jupyter-work-pv
|
||
|
---
|
||
|
kind: StorageClass
|
||
|
apiVersion: storage.k8s.io/v1
|
||
|
metadata:
|
||
|
name: nfs
|
||
|
labels:
|
||
|
addonmanager.kubernetes.io/mode: EnsureExists
|
||
|
provisioner: k8s.io/minikube-hostpath
|