|
57 | 57 | # degradation due to I/O blocking and is not recommended in most cases. Modifying this parameter should be done |
58 | 58 | # incrementally with benchmarking at each step to determine an optimal value for your deployment. |
59 | 59 | # |
| 60 | +# $pulpcore_content_service_worker_count:: Gunicorn worker count for the pulpcore-content.service |
| 61 | +# |
60 | 62 | # $pulpcore_content_service_worker_timeout:: Gunicorn worker timeout in seconds for the pulpcore-content.service |
61 | 63 | # |
| 64 | +# $pulpcore_api_service_worker_count:: Gunicorn worker count for the pulpcore-api.service |
| 65 | +# |
62 | 66 | # $pulpcore_api_service_worker_timeout:: Gunicorn worker timeout in seconds for the pulpcore-api.service |
63 | 67 | # |
64 | 68 | # $pulpcore_django_secret_key:: Secret key used for cryptographic operations by Pulpcore's django runtime |
|
107 | 111 | Stdlib::Absolutepath $pulpcore_postgresql_ssl_root_ca = '/etc/pki/tls/certs/ca-bundle.crt', |
108 | 112 | Integer[0] $pulpcore_worker_count = $foreman_proxy_content::params::pulpcore_worker_count, |
109 | 113 | Optional[String[50]] $pulpcore_django_secret_key = undef, |
| 114 | + Optional[Integer[0]] $pulpcore_content_service_worker_count = undef, |
110 | 115 | Integer[0] $pulpcore_content_service_worker_timeout = 90, |
| 116 | + Optional[Integer[0]] $pulpcore_api_service_worker_count = undef, |
111 | 117 | Integer[0] $pulpcore_api_service_worker_timeout = 90, |
112 | 118 | Boolean $pulpcore_cache_enabled = true, |
113 | 119 | Optional[Variant[Integer[1], Enum['None']]] $pulpcore_cache_expires_ttl = undef, |
|
254 | 260 | postgresql_db_ssl_root_ca => $pulpcore_postgresql_ssl_root_ca, |
255 | 261 | worker_count => $pulpcore_worker_count, |
256 | 262 | django_secret_key => $pulpcore_django_secret_key, |
| 263 | + content_service_worker_count => $pulpcore_content_service_worker_count, |
257 | 264 | content_service_worker_timeout => $pulpcore_content_service_worker_timeout, |
| 265 | + api_service_worker_count => $pulpcore_api_service_worker_count, |
258 | 266 | api_service_worker_timeout => $pulpcore_api_service_worker_timeout, |
259 | 267 | api_client_auth_cn_map => $api_client_auth_cn_map, |
260 | 268 | cache_enabled => $pulpcore_cache_enabled, |
|
0 commit comments