File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ seed_pulp_container:
112
112
# s6-overlay-suexec starts as pid 1
113
113
init : false
114
114
env :
115
- PULP_CONTENT_WORKERS : " {{ ansible_facts.processor_vcpus * 2 + 1 }}"
116
- PULP_API_WORKERS : " {{ ansible_facts.processor_vcpus * 2 + 1 }}"
115
+ PULP_CONTENT_WORKERS : " {{ [ ansible_facts.processor_vcpus * 2 + 1, 32] | min }}"
116
+ PULP_API_WORKERS : " {{ [ ansible_facts.processor_vcpus * 2 + 1, 32] | min }}"
117
117
PULP_HTTPS : " {{ 'true' if pulp_enable_tls | bool else 'false' }}"
118
118
volumes :
119
119
- /opt/kayobe/containers/pulp:/etc/pulp
Original file line number Diff line number Diff line change
1
+ fixes :
2
+ - |
3
+ Caps the number of Pulp API and content workers to 32 each to avoid errors
4
+ on hosts with many CPUs.
You can’t perform that action at this time.
0 commit comments