Baoyuantop commented on issue #729: URL: https://github.com/apache/apisix-helm-chart/issues/729#issuecomment-4205344086
The `setrlimit(RLIMIT_CORE) failed: Operation not permitted` warning is a non-fatal message from NGINX/OpenResty. It occurs because the container does not have the privilege to set core dump limits, which is expected in most Kubernetes environments with default security contexts. This warning **does not affect APISIX's normal operation**. The chart does provide `apisix.nginx.workerRlimitNofile` (values.yaml line 433, default: `"20480"`) for configuring the worker process file descriptor limit. If you want to suppress the core dump warning, you can add the `SYS_RESOURCE` capability via `securityContext` (values.yaml lines 47-53), but this is generally not recommended for production. Closing as this is an expected non-fatal warning. If you still have concerns, please feel free to reopen. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
