From 37f0e90390dce12f8d342afaccc5faaff884576a Mon Sep 17 00:00:00 2001 From: Jaime Soriano Pastor Date: Wed, 16 Nov 2022 11:24:00 +0100 Subject: [PATCH 1/2] Fix fleet-server healthcheck for 8.6 --- internal/profile/_static/docker-compose-stack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/profile/_static/docker-compose-stack.yml b/internal/profile/_static/docker-compose-stack.yml index 0f2b4930a..be2e0324b 100644 --- a/internal/profile/_static/docker-compose-stack.yml +++ b/internal/profile/_static/docker-compose-stack.yml @@ -86,7 +86,7 @@ services: kibana: condition: service_healthy healthcheck: - test: "curl --cacert /etc/ssl/elastic-agent/ca-cert.pem -f https://localhost:8220/api/status | grep HEALTHY 2>&1 >/dev/null" + test: "curl --cacert /etc/ssl/elastic-agent/ca-cert.pem -f https://localhost:8220/api/status | grep -i healthy 2>&1 >/dev/null" retries: 60 interval: 5s hostname: docker-fleet-server From ac654eda7c02d651f890043dd39cbc316fa2b8d4 Mon Sep 17 00:00:00 2001 From: Jaime Soriano Pastor Date: Wed, 16 Nov 2022 11:58:23 +0100 Subject: [PATCH 2/2] Test stack command with 8.6 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e7389b7e5..23ee32d96 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ test-stack-command-7x: ./scripts/test-stack-command.sh 7.17.3-SNAPSHOT test-stack-command-8x: - ./scripts/test-stack-command.sh 8.3.0-SNAPSHOT + ./scripts/test-stack-command.sh 8.6.0-SNAPSHOT test-stack-command: test-stack-command-default test-stack-command-7x test-stack-command-800 test-stack-command-8x