[bitnami/rabbitmq] Align ulimitNofiles default value on containerd runc runtime default ulimit -n value (#27052)

This commit is contained in:
Guillaume VARA
2024-06-13 10:25:17 +02:00
committed by GitHub
parent 1e01ab89e9
commit 34a4923799
4 changed files with 9 additions and 5 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 14.4.1 (2024-06-06)
## 14.4.2 (2024-06-12)
* [bitnami/rabbitmq] Release 14.4.1 ([#27010](https://github.com/bitnami/charts/pull/27010))
* [bitnami/rabbitmq] Align ulimitNofiles default value on containerd runc runtime default ulimit -n value ([#27052](https://github.com/bitnami/charts/pull/27052))
## <small>14.4.1 (2024-06-06)</small>
* [bitnami/rabbitmq] Release 14.4.1 (#27010) ([1769eb5](https://github.com/bitnami/charts/commit/1769eb5722a47299d4e5b1051e5ad3826861d9ff)), closes [#27010](https://github.com/bitnami/charts/issues/27010)
## 14.4.0 (2024-06-06)

View File

@@ -30,4 +30,4 @@ maintainers:
name: rabbitmq
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/rabbitmq
version: 14.4.1
version: 14.4.2

View File

@@ -386,7 +386,7 @@ You can enable this `initContainer` by setting `volumePermissions.enabled` to `t
| `auth.tls.existingSecretFullChain` | Whether or not the existing secret contains the full chain in the certificate (`tls.crt`). Will be used in place of `ca.cert` if `true`. | `false` |
| `auth.tls.overrideCaCertificate` | Existing secret with certificate content be mounted instead of the `ca.crt` coming from caCertificate or existingSecret/existingSecretFullChain. | `""` |
| `logs` | Path of the RabbitMQ server's Erlang log file. Value for the `RABBITMQ_LOGS` environment variable | `-` |
| `ulimitNofiles` | RabbitMQ Max File Descriptors | `65536` |
| `ulimitNofiles` | RabbitMQ Max File Descriptors | `65535` |
| `maxAvailableSchedulers` | RabbitMQ maximum available scheduler threads | `""` |
| `onlineSchedulers` | RabbitMQ online scheduler threads | `""` |
| `memoryHighWatermark.enabled` | Enable configuring Memory high watermark on RabbitMQ | `false` |

View File

@@ -218,7 +218,7 @@ logs: "-"
## ref: https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq#environment-variables
## ref: https://www.rabbitmq.com/install-debian.html#kernel-resource-limits
##
ulimitNofiles: "65536"
ulimitNofiles: "65535"
## RabbitMQ maximum available scheduler threads and online scheduler threads. By default it will create a thread per CPU detected, with the following parameters you can tune it manually.
## ref: https://hamidreza-s.github.io/erlang/scheduling/real-time/preemptive/migration/2016/02/09/erlang-scheduler-details.html#scheduler-threads
## ref: https://github.com/bitnami/charts/issues/2189