HyperV + Kubernetes mounting a volume

If I am using Docker Desktop + HyperV + Kubernetes, is it possible to mount a shared volume into the pod? I tried like this and it didn’t work. With WSL, I was able to do /run/desktop/mnt/host/c/tmp

apiVersion: v1
kind: PersistentVolume
metadata:
  name: airflow
  labels:
    type: local
spec:
  storageClassName: manual
  capacity:
    storage: 8Gi
  accessModes:
    - ReadOnlyMany
  hostPath:
    path: /mnt/c/test

You have two options:

If you map this to docker containers, the first is what binds do, and the second what named volumes backed by a bind do.