From aa6caea7f3b7c371a4977acd8d63416ddd4fe764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Tue, 10 Oct 2023 16:03:30 +0200 Subject: [PATCH] fix: elastic build from trial to basic --- docker/elasticsearch/config/elasticsearch.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/elasticsearch/config/elasticsearch.yml b/docker/elasticsearch/config/elasticsearch.yml index d63694d..46d6601 100644 --- a/docker/elasticsearch/config/elasticsearch.yml +++ b/docker/elasticsearch/config/elasticsearch.yml @@ -1,5 +1,5 @@ node.name: elasticsearch -cluster.name: "docker-cluster" +cluster.name: 'docker-cluster' network.host: 0.0.0.0 bootstrap.memory_lock: true @@ -7,7 +7,7 @@ bootstrap.memory_lock: true discovery.type: single-node xpack.security.enabled: true -xpack.license.self_generated.type: trial +xpack.license.self_generated.type: basic xpack.security.http.ssl.enabled: true xpack.security.http.ssl.key: certs/elasticsearch/elasticsearch.key xpack.security.http.ssl.certificate: certs/elasticsearch/elasticsearch.crt @@ -16,4 +16,4 @@ xpack.security.transport.ssl.enabled: true xpack.security.transport.ssl.key: certs/elasticsearch/elasticsearch.key xpack.security.transport.ssl.certificate: certs/elasticsearch/elasticsearch.crt xpack.security.transport.ssl.certificate_authorities: certs/ca/ca.crt -xpack.security.transport.ssl.verification_mode: certificate \ No newline at end of file +xpack.security.transport.ssl.verification_mode: certificate