fix(emqx): increase disk to 6GB and add optional MQ disable prompt (#11844)

EMQX 6.1+ preallocates significant disk space for the MQ feature,
causing high CPU/disk usage on small containers (emqx/emqx#16649).

- Increase default disk from 4GB to 6GB
- Add read -rp prompt during install to optionally disable MQ feature
  via mq.enable=false in emqx.conf (reduces disk/CPU overhead)
- Setting is in install script (not CT script) per reviewer feedback

Co-authored-by: sim-san <sim-san@users.noreply.github.com>
This commit is contained in:
CanbiZ (MickLesk)
2026-02-12 20:04:47 +01:00
committed by GitHub
parent f9612c5aba
commit 291ed4c5ad
3 changed files with 14 additions and 2 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
"resources": {
"cpu": 2,
"ram": 1024,
"hdd": 4,
"hdd": 6,
"os": "debian",
"version": "13"
}