- Windows Pro x64
- Docker Desktop 4.25.1 + Kubernetes + HyperV backend
I have a PersistentVolume that works fine if I’m running with the WSL2 backend, but WSL2 is too unstable, so I switched to HyperV and the mount no longer works:
apiVersion: v1
kind: PersistentVolume
metadata:
name: airflow
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 8Gi
accessModes:
- ReadWriteOnce
hostPath:
path: /run/desktop/mnt/host/c/users/xxx/.airflow
I did see some references that the path might need to be /host_mnt/c/users/xxx/.airflow
, but that doesn’t work either.