Skip to content

Commit

Permalink
Address kantra too many open files #111
Browse files Browse the repository at this point in the history
  • Loading branch information
jwmatthews committed Nov 7, 2023
1 parent fccbe53 commit c39e10e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion data/darwin_restart_podman_machine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@

# See https://github.com/konveyor/kantra/issues/91
# See https://github.com/containers/podman/issues/16106#issuecomment-1317188581
# Setting file limits to unlimited on the Mac Host
ulimit -n unlimited
podman machine stop $VM_NAME
podman machine rm $VM_NAME -f
podman machine init $VM_NAME -v $HOME:$HOME -v /private/tmp:/private/tmp -v /var/folders/:/var/folders/
podman machine set $VM_NAME --cpus $CPUS --memory $MEM --disk-size $DISK_SIZE
podman system connection default $VM_NAME
podman machine start $VM_NAME

# Workaround for setting file limits inside of the podman machine VM
# https://github.com/konveyor/kantra/issues/111
podman machine ssh kantra "echo * soft nofile 65535 | sudo tee -a /etc/security/limits.conf"
podman machine ssh kantra "echo * hard nofile 65535 | sudo tee -a /etc/security/limits.conf"
podman machine ssh kantra ulimit -n #To confirm the change has taken effect

0 comments on commit c39e10e

Please sign in to comment.