7 lines
414 B
Text
7 lines
414 B
Text
|
|
# Managed by Ansible (resource_limits role)
|
||
|
|
# Caps process count for {{ resource_limit_user | default('tegwick') }}
|
||
|
|
# to prevent runaway agents from exhausting the kernel PID table.
|
||
|
|
# See INC-002 (2026-03-26) for root cause context.
|
||
|
|
{{ resource_limit_user | default('tegwick') }} soft nproc {{ nproc_soft | default(512) }}
|
||
|
|
{{ resource_limit_user | default('tegwick') }} hard nproc {{ nproc_hard | default(1024) }}
|