From eb16a5b66a4455d7df4937277b47c701fafcc883 Mon Sep 17 00:00:00 2001 From: Bryan Larsen Date: Wed, 3 May 2017 13:10:20 -0400 Subject: [PATCH] Increase number of inodes fixes #1443 --- deploy/iso/minikube-iso/package/automount/minikube-automount | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/iso/minikube-iso/package/automount/minikube-automount b/deploy/iso/minikube-iso/package/automount/minikube-automount index e84c4d9f5..a59993d62 100755 --- a/deploy/iso/minikube-iso/package/automount/minikube-automount +++ b/deploy/iso/minikube-iso/package/automount/minikube-automount @@ -52,7 +52,7 @@ if [ ! -n "$BOOT2DOCKER_DATA" ]; then sleep 0.5 done BOOT2DOCKER_DATA=`echo "${UNPARTITIONED_HD}1"` - mkfs.ext4 -i 8192 -L $LABEL $BOOT2DOCKER_DATA + mkfs.ext4 -i 2048 -L $LABEL $BOOT2DOCKER_DATA fi DISK_VENDOR=$(cat /sys/class/block/$(basename $UNPARTITIONED_HD /dev/)/device/vendor /sys/class/block/$(basename $UNPARTITIONED_HD /dev/)/device/model | tr -d "\n") @@ -75,7 +75,7 @@ if [ ! -n "$BOOT2DOCKER_DATA" ]; then # Add the data partition (echo n; echo p; echo 1; echo ; echo ; echo w) | fdisk $UNPARTITIONED_HD BOOT2DOCKER_DATA=`echo "${UNPARTITIONED_HD}1"` - mkfs.ext4 -i 8192 -L $LABEL $BOOT2DOCKER_DATA + mkfs.ext4 -i 2048 -L $LABEL $BOOT2DOCKER_DATA else echo "Disk unpartitioned but something is there... not doing anything" fi -- GitLab