You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we got as error too many open files within the log of the pods, then the fix, which is documented by kind here is to increase the inotify part of the following file: /etc/sysctl.conf
echo 'fs.inotify.max_user_watches=1048576' | sudo tee -a /etc/sysctl.conf
echo 'fs.inotify.max_user_instances=512' | sudo tee -a /etc/sysctl.conf
sudo sysctl -p /etc/sysctl.conf
What is your environment, configuration, and command?
When running idpbuilder in some environment, ingress-nginx never becomes ready because:
This seems to happen when pid limit is set low and worker process count is high.
Nginx's
worker-processes
value defaults to the number of CPUs available.So we could:
What did you do and What did you see instead?
n/a
Additional Information. Logs.
To solve the issue above a few options are currently available.
-c
flag.Then run idpbuilder with
idpbuilder create -c nginx:/tmp/cm.yaml
This is typically done in
$HOME/.config/containers/containers.con
The text was updated successfully, but these errors were encountered: