From d8b1a4d61718ce36279aa8ade4d10780084f9162 Mon Sep 17 00:00:00 2001 From: Emily McMullan Date: Fri, 20 Oct 2023 15:31:06 -0400 Subject: [PATCH] include podman resource requirements for mac Signed-off-by: Emily McMullan --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d8b1f7f..dd67dd0 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,30 @@ podman pull quay.io/konveyor/kantra:latest && podman run --name kantra-download ### MacOS -**Note:** On MacOS, in order to correctly mount volumes, your podman machine must contain options: +**Note:** There is a known [issue](https://github.com/containers/podman/issues/16106) +with limited number of open files in mounted volumes on MacOS, which may affect kantra performance. + +Prior to starting your podman machine, run: + +```sh +ulimit -n unlimited +``` + + - This must be run after each podman machine reboot. + +In order to correctly mount volumes, your podman machine must contain options: ```sh podman machine init -v $HOME:$HOME -v /private/tmp:/private/tmp -v /var/folders/:/var/folders/ ``` +Increase podman resources: + +```sh +podman machine set --cpus 4 --memory 4096 +``` + + Ensure that we use the connection to the VM `` we created earlier by default: ```sh