Open
Description
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
Minikube version (use minikube version
): v0.21.0
Environment:
- OS (e.g. from /etc/os-release): macOS 10.12.5
- VM Driver (e.g.
cat ~/.minikube/machines/minikube/config.json | grep DriverName
): virtualbox 5.1.8 r111374 - ISO version (e.g.
cat ~/.minikube/machines/minikube/config.json | grep -i ISO
orminikube ssh cat /etc/VERSION
): minikube-v0.23.0.iso - Install tools:
- Others:
What happened:
I use the new flag minikube mount --msize 104857600
, and I tried some values from the default value 262144(256KB) to 104857600(100MB), still can not mount the alembic versions
directory, that contains about total 644
(same filename with different ext, .py
and .pyc
) files, and filename length is average 30
character.
But when I remove all the .pyc
files to reduce the total file number to 322
, it can be mounted.
Debug log is below:
sudo mount -t 9p -o trans=tcp,port=55116,dfltuid=1001,dfltgid=1001,version=9p2000.u,msize=104857600 192.168.99.1 /xxxx/alembic/versions;
2017/07/26 12:44:06 <<< 192.168.99.106:48318 Rstat tag 1 st ('versions' 'none' 'none' 'none' q (7cf86b 7ce03230 'd') m d755 at 0 mt 1501038654 l 21964 t 0 d 0 ext )
2017/07/26 12:44:06 >>> 192.168.99.106:48318 Tread tag 1 fid 5 offset 0 count 65512
2017/07/26 12:44:06 <<< 192.168.99.106:48318 Rread tag 1 count 65428
2017/07/26 12:44:06 >>> 192.168.99.106:48318 Tread tag 1 fid 5 offset 65428 count 84
2017/07/26 12:44:06 <<< 192.168.99.106:48318 Rerror tag 1 ename 'too small read size for dir entry' ecode 22
2017/07/26 12:44:06 >>> 192.168.99.106:48318 Tclunk tag 1 fid 5
What you expected to happen:
Directory should be mounted
How to reproduce it (as minimally and precisely as possible):
Anything else do we need to know: