X-Git-Url: https://gerrit.mcp.mirantis.com/gitweb?p=salt-formulas%2Felasticsearch.git;a=blobdiff_plain;f=README.rst;h=0c7021fe964da360b522c1df7c46718a61f73981;hp=90df9bef21cef8023a5872e94b3f86c8551eaefd;hb=63c8c25b95de6f4d545d3c918c1b045681d1d26b;hpb=465fa7abc58059ab93ea3052e7484b986f601c34 diff --git a/README.rst b/README.rst index 90df9be..0c7021f 100644 --- a/README.rst +++ b/README.rst @@ -8,15 +8,44 @@ Elasticsearch provides a distributed, multitenant-capable full-text search engin Sample pillars ============== +Single-node elasticsearch with clustering disabled: + +.. code-block:: yaml + + elasticsearch: + server: + enabled: true + bind: + address: 0.0.0.0 + port: 9200 + cluster: + multicast: false + index: + shards: 1 + replicas: 0 + +Cluster with manually defined members: + .. code-block:: yaml elasticsearch: server: enabled: true - version: 1.0.1 bind: address: 0.0.0.0 port: 9200 + cluster: + multicast: false + members: + - host: elastic01 + port: 9300 + - host: elastic02 + port: 9300 + - host: elastic03 + port: 9300 + index: + shards: 5 + replicas: 1 Read more =========