From 207aa803c65f6ff68cc2247a54832ff4e7d94cbc Mon Sep 17 00:00:00 2001 From: Gui-Gos <97973228+Gui-Gos@users.noreply.github.com> Date: Sun, 4 Jan 2026 13:24:07 +0100 Subject: [PATCH] fix: Add required devices field to deploy.resources.reservations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Runtipi schema requires the 'devices' array field in reservations section. Added empty devices array to all three services with resource limits: - wazuh-indexer - wazuh-manager - wazuh-dashboard This fixes the schema validation error: "Invalid input: expected array, received undefined" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- apps/wazuh-runtipi/docker-compose.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/wazuh-runtipi/docker-compose.json b/apps/wazuh-runtipi/docker-compose.json index 405c5fd..98cf4e1 100644 --- a/apps/wazuh-runtipi/docker-compose.json +++ b/apps/wazuh-runtipi/docker-compose.json @@ -130,7 +130,8 @@ }, "reservations": { "cpus": "0.5", - "memory": "1G" + "memory": "1G", + "devices": [] } } }, @@ -280,7 +281,8 @@ }, "reservations": { "cpus": "1.0", - "memory": "1G" + "memory": "1G", + "devices": [] } } }, @@ -438,7 +440,8 @@ }, "reservations": { "cpus": "0.2", - "memory": "512M" + "memory": "512M", + "devices": [] } } },