-
|
Hi! I am running into some issues with Jest and hot reloading not working because the limit is set to 8192, and that looks to be very low. I can go manually, ssh into the VM and change that value, but when I restart Rancher Desktop that value gets reset to 8192. If I Is there a way of having this value to be permanent? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
|
If you are on macOS or Linux, take a look at #713 (comment) |
Beta Was this translation helpful? Give feedback.
-
|
Since the override is applied on every startup of the VM, I have success with the simpler approach of just making the adjustment directly. mspreitz@mjs13 ~ % cat ~/Library/Application\ Support/rancher-desktop/lima/_config/override.yaml
provision:
- mode: system
script: |
#!/bin/sh
sysctl fs.inotify.max_user_watches=524288
sysctl fs.inotify.max_user_instances=512 |
Beta Was this translation helpful? Give feedback.
-
|
is there a solution for window? my VM restarts every night 😒 |
Beta Was this translation helpful? Give feedback.
If you are on macOS or Linux, take a look at #713 (comment)