From 81656c75e91143c26dee7fc3a75df403e7785c00 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 16 Mar 2026 17:53:37 -0400 Subject: [PATCH] Update OpenSearch healthcheck to use HTTPS and include authentication --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index d60a3f4..b4d6b6f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -48,7 +48,7 @@ services: test: [ "CMD-SHELL", - "curl -s -XGET http://localhost:9201/_cluster/health?pretty | grep status | grep -q '\\(green\\|yellow\\)'" + "curl -sk -u admin:${OPENSEARCH_INITIAL_ADMIN_PASSWORD} -XGET https://localhost:9200/_cluster/health?pretty | grep status | grep -q '\\(green\\|yellow\\)'" ] interval: 10s timeout: 10s