kubernetes persistent volume ReadWriteOnly(RWO) does not work for nfs
问题 there, According to the doc: ReadWriteOnce – the volume can be mounted as read-write by a single node I created a PV based on nfs: apiVersion: v1 kind: PersistentVolume metadata: name: tspv01 spec: capacity: storage: 15Gi accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Recycle nfs: path: /gpfs/fs01/shared/prod/democluster01/dashdb/gamestop/spv01 server: 169.55.11.79 a PVC for this PV: kind: PersistentVolumeClaim apiVersion: v1 metadata: name: sclaim spec: accessModes: -