Skip to content

Commit

Permalink
Fix fleet-server healthcheck for 8.6 (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoriano authored Nov 16, 2022
1 parent 912837b commit f1cda2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion internal/profile/_static/docker-compose-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f1cda2b

Please sign in to comment.