Skip to content

Commit

Permalink
rework skip
Browse files Browse the repository at this point in the history
  • Loading branch information
spowelljr committed Nov 7, 2022
1 parent 6d68515 commit a9963a7
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions deploy/kicbase/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -118,16 +118,11 @@ configure_containerd() {
# we need to switch to 'native' or 'fuse-overlayfs' on zfs
container_filesystem="$(stat -f -c %T /kind)"
if [[ "$container_filesystem" == 'zfs' ]]; then
# if fuse is present, use fuse-overlayfs, else fallback to native
# we do not use the ZFS snapshotter because of skew issues vs the host
if [[ -e /dev/fuse ]]; then
# snapshotter="fuse-overlayfs" skipping temporarily: https://github.com/kubernetes/minikube/issues/15191
else
snapshotter="native"
fi
snapshotter="native"
# fuse likely implies fuse-overlayfs, we should switch to fuse-overlayfs (or native)
elif [[ "$container_filesystem" == 'fuseblk' ]]; then
# snapshotter="fuse-overlayfs" skipping temporarily: https://github.com/kubernetes/minikube/issues/15191
# elif [[ "$container_filesystem" == 'fuseblk' ]]; then skipping temporarily: https://github.com/kubernetes/minikube/issues/15191
# snapshotter="fuse-overlayfs"
fi
fi

Expand Down

0 comments on commit a9963a7

Please sign in to comment.