diff --git a/examples/pod-with-rwop-volume/kustomization.yaml b/examples/pod-with-rwop-volume/kustomization.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..9a7377797544765351931ecccba245a0b3b10477
--- /dev/null
+++ b/examples/pod-with-rwop-volume/kustomization.yaml
@@ -0,0 +1,5 @@
+apiVersion: kustomize.config.k8s.io/v1beta1
+kind: Kustomization
+resources:
+- ../pvc-with-rwop-access-mode
+- pod.yaml
diff --git a/examples/pod-with-rwop-volume/pod.yaml b/examples/pod-with-rwop-volume/pod.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..20300859118810950a050c3b3056abaa6688406b
--- /dev/null
+++ b/examples/pod-with-rwop-volume/pod.yaml
@@ -0,0 +1,18 @@
+apiVersion: v1
+kind: Pod
+metadata:
+  name: volume-test
+spec:
+  containers:
+  - name: volume-test
+    image: nginx:stable-alpine
+    imagePullPolicy: IfNotPresent
+    volumeMounts:
+    - name: volv
+      mountPath: /data
+    ports:
+    - containerPort: 80
+  volumes:
+  - name: volv
+    persistentVolumeClaim:
+      claimName: local-rwop-volume-pvc
diff --git a/examples/pvc-with-rwop-access-mode/kustomization.yaml b/examples/pvc-with-rwop-access-mode/kustomization.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..7bfd4518aa9a6bfc3da2679d7337102514bb1d8e
--- /dev/null
+++ b/examples/pvc-with-rwop-access-mode/kustomization.yaml
@@ -0,0 +1,4 @@
+apiVersion: kustomize.config.k8s.io/v1beta1
+kind: Kustomization
+resources:
+- pvc.yaml
diff --git a/examples/pvc-with-rwop-access-mode/pvc.yaml b/examples/pvc-with-rwop-access-mode/pvc.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..25ad8befccedd8bd732a3d55e5c7f58808447ad1
--- /dev/null
+++ b/examples/pvc-with-rwop-access-mode/pvc.yaml
@@ -0,0 +1,13 @@
+apiVersion: v1
+kind: PersistentVolumeClaim
+metadata:
+  name: local-rwop-volume-pvc
+  annotations:
+    volumeType: local
+spec:
+  accessModes:
+    - ReadWriteOncePod
+  storageClassName: local-path
+  resources:
+    requests:
+      storage: 128Mi
diff --git a/provisioner.go b/provisioner.go
index 42297d4815959ef40ec3cbd07d5960187887dc4e..8f13467d552267048875d3b86e037a16a374e011 100644
--- a/provisioner.go
+++ b/provisioner.go
@@ -255,8 +255,8 @@ func (p *LocalPathProvisioner) Provision(ctx context.Context, opts pvController.
 			return nil, pvController.ProvisioningFinished, fmt.Errorf("claim.Spec.Selector is not supported")
 		}
 		for _, accessMode := range pvc.Spec.AccessModes {
-			if accessMode != v1.ReadWriteOnce {
-				return nil, pvController.ProvisioningFinished, fmt.Errorf("Only support ReadWriteOnce access mode")
+			if accessMode != v1.ReadWriteOnce && accessMode != v1.ReadWriteOncePod {
+				return nil, pvController.ProvisioningFinished, fmt.Errorf("NodePath only supports ReadWriteOnce and ReadWriteOncePod (1.22+) access modes")
 			}
 		}
 		if node == nil {
diff --git a/test/pod_test.go b/test/pod_test.go
index 6e78d2e6fab894d4e037a1aa8680b314b5252871..5f0b0b3a4854b241659a38867c7f9a9066a11cc5 100644
--- a/test/pod_test.go
+++ b/test/pod_test.go
@@ -102,6 +102,12 @@ func (p *PodTestSuite) TestPodWithNodeAffinity() {
 	runTest(p, []string{p.config.IMAGE}, "ready", hostPathVolumeType)
 }
 
+func (p *PodTestSuite) TestPodWithRWOPVolume() {
+	p.kustomizeDir = "pod-with-rwop-volume"
+
+	runTest(p, []string{p.config.IMAGE}, "ready", localVolumeType)
+}
+
 func (p *PodTestSuite) TestPodWithSecurityContext() {
 	p.kustomizeDir = "pod-with-security-context"
 	kustomizeDir := testdataFile(p.kustomizeDir)
diff --git a/test/testdata/pod-with-rwop-volume/kustomization.yaml b/test/testdata/pod-with-rwop-volume/kustomization.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d650c9856b8b9c71000a613230c40ba53d13f369
--- /dev/null
+++ b/test/testdata/pod-with-rwop-volume/kustomization.yaml
@@ -0,0 +1,10 @@
+apiVersion: kustomize.config.k8s.io/v1beta1
+kind: Kustomization
+resources:
+- ../../../deploy
+- ../../../examples/pod-with-rwop-volume
+commonLabels:
+  app: local-path-provisioner
+images:
+- name: rancher/local-path-provisioner
+  newTag: dev