Is it possible to use a single volume that uses a PVC as a volumeMount to a pod . . .

Kenji:
Is it possible to use a single volume that uses a PVC as a volumeMount to a pod in 2 different Paths?

specs:
containers:
volumeMounts:
- name: test
path: /sample
- name: test
path: /sample2
volumes:
- name: test
persistentVolumeClaim:
claimName: efs-claim

Tej_Singh_Rana:
Yeah, it’s possible.