You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by tu...@apache.org on 2020/10/27 17:38:38 UTC

[kibble] branch main updated: Remove ulimits for elasticsearch in docker-compose (#80)

This is an automated email from the ASF dual-hosted git repository.

turbaszek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kibble.git


The following commit(s) were added to refs/heads/main by this push:
     new 5471c07  Remove ulimits for elasticsearch in docker-compose (#80)
5471c07 is described below

commit 5471c07a3798a58333d5cd3c8fac7dd789209538
Author: Tomek Urbaszek <tu...@gmail.com>
AuthorDate: Tue Oct 27 18:38:27 2020 +0100

    Remove ulimits for elasticsearch in docker-compose (#80)
---
 .gitignore              | 4 ++--
 docker-compose-dev.yaml | 7 +------
 2 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/.gitignore b/.gitignore
index f7ef792..b12fa18 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
 # Apache Kibble files
-api/yaml/kibble.yaml
-kibble/api/yaml/kibble.yaml
+api/yaml/kibble.yaml*
+kibble/api/yaml/kibble.yaml*
 
 # Byte-compiled / optimized / DLL files
 __pycache__/
diff --git a/docker-compose-dev.yaml b/docker-compose-dev.yaml
index 5aaff83..55c81c6 100644
--- a/docker-compose-dev.yaml
+++ b/docker-compose-dev.yaml
@@ -47,15 +47,10 @@ services:
       node.name: es01
       discovery.seed_hosts: es02
       cluster.initial_master_nodes: es01
-      cluster.name: traefik-tutorial-cluster
-      bootstrap.memory_lock: "true"
+      cluster.name: kibble
       ES_JAVA_OPTS: -Xms256m -Xmx256m
     volumes:
       - "kibble-es-data:/usr/share/elasticsearch/data"
-    ulimits:
-      memlock:
-        soft: -1
-        hard: -1
 
   # Kibana to view and manage Elasticsearch
   kibana: