From 94356039c44adf30728e2717fdfae1850bd8de81 Mon Sep 17 00:00:00 2001 From: Michael Born Date: Tue, 5 Nov 2024 09:15:43 -0500 Subject: [PATCH] CI - Try disabling authentication for ES 8 CI tests --- build/resources/elasticsearch.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/resources/elasticsearch.yml b/build/resources/elasticsearch.yml index 0069792..ef84104 100644 --- a/build/resources/elasticsearch.yml +++ b/build/resources/elasticsearch.yml @@ -2,4 +2,7 @@ discovery.type: "single-node" cluster.name: "docker-cluster" xpack.security.enabled: "false" network.host: 0.0.0.0 -path.repo: ["/tmp"] \ No newline at end of file +path.repo: ["/tmp"] + +# ES 8 requires explicit setting of the following +xpack.security.enabled: false \ No newline at end of file