Kubernetes - Persistent Storage
A user wrote this PVC YAML but it fails to bind:
What is the most probable error?
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: test-pvc
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 10GiWhat is the most probable error?
