From 3a1c07f6a14cdc9b01038a899b200f82ce43e0e1 Mon Sep 17 00:00:00 2001 From: Andy Shultz Date: Thu, 7 Dec 2023 13:56:50 -0500 Subject: [PATCH] fix: launch opensearch container without SSL Leaving security on in devstack results in openseach freaking out as it fails to get its TLS running. With this change OS is running and usable. --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 1a68acd627..b9cf0d0b13 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -86,6 +86,7 @@ services: - discovery.type=single-node - bootstrap.memory_lock=true - "ES_JAVA_OPTS=-Xms512m -Xmx512m" + - "plugins.security.disabled=true" firefox: container_name: "edx.${COMPOSE_PROJECT_NAME:-devstack}.firefox"