From 606a860e975bc747ee741041a91079121a621da8 Mon Sep 17 00:00:00 2001 From: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com> Date: Mon, 6 Apr 2026 00:07:02 +0530 Subject: [PATCH] fix(service): nextcloud workers exhaustion due to low interval healthcheck --- templates/compose/nextcloud-with-mariadb.yaml | 2 +- templates/compose/nextcloud-with-mysql.yaml | 2 +- templates/compose/nextcloud-with-postgres.yaml | 2 +- templates/compose/nextcloud.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/compose/nextcloud-with-mariadb.yaml b/templates/compose/nextcloud-with-mariadb.yaml index 42ee52274..60703f862 100644 --- a/templates/compose/nextcloud-with-mariadb.yaml +++ b/templates/compose/nextcloud-with-mariadb.yaml @@ -29,7 +29,7 @@ services: condition: service_healthy healthcheck: test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] - interval: 2s + interval: 30s timeout: 10s retries: 15 diff --git a/templates/compose/nextcloud-with-mysql.yaml b/templates/compose/nextcloud-with-mysql.yaml index e6512deed..7d3027b9d 100644 --- a/templates/compose/nextcloud-with-mysql.yaml +++ b/templates/compose/nextcloud-with-mysql.yaml @@ -29,7 +29,7 @@ services: condition: service_healthy healthcheck: test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] - interval: 2s + interval: 30s timeout: 10s retries: 15 diff --git a/templates/compose/nextcloud-with-postgres.yaml b/templates/compose/nextcloud-with-postgres.yaml index b3eaaa853..b720704e2 100644 --- a/templates/compose/nextcloud-with-postgres.yaml +++ b/templates/compose/nextcloud-with-postgres.yaml @@ -29,7 +29,7 @@ services: condition: service_healthy healthcheck: test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] - interval: 2s + interval: 30s timeout: 10s retries: 15 diff --git a/templates/compose/nextcloud.yaml b/templates/compose/nextcloud.yaml index dfdf5dba3..84c0cf5c2 100644 --- a/templates/compose/nextcloud.yaml +++ b/templates/compose/nextcloud.yaml @@ -18,6 +18,6 @@ services: - nextcloud-data:/data healthcheck: test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] - interval: 2s + interval: 30s timeout: 10s retries: 15