X-Git-Url: https://gerrit.mcp.mirantis.com/gitweb?p=salt-formulas%2Felasticsearch.git;a=blobdiff_plain;f=README.rst;h=08bd72a64b5c9f051fd8db17515ba8d43ab40a7f;hp=1d85c546dd457be283f271f0681801f8524ca431;hb=30c6becac6eae19ee467f6bfa7c72c153dd0a667;hpb=d39b35210140948c5f1f5bfa40d8971f21f2124e diff --git a/README.rst b/README.rst index 1d85c54..08bd72a 100644 --- a/README.rst +++ b/README.rst @@ -24,6 +24,17 @@ Single-node elasticsearch with clustering disabled: shards: 1 replicas: 0 +Setup shared repository for snapshots: + +.. code-block:: bash + + elasticsearch: + server: + snapshot: + reponame: + path: /var/lib/glusterfs/repo + compress: true + Cluster with manually defined members: .. code-block:: yaml @@ -122,7 +133,19 @@ Common definition for curator: Client setup ------------ -Client with host and port +Client with host and port: + +.. code-block:: yaml + + elasticsearch: + client: + enabled: true + server: + host: elasticsearch.host + port: 9200 + +Client where you download an index template that is stored in the direcotry +*files/*: .. code-block:: yaml @@ -132,6 +155,10 @@ Client with host and port server: host: elasticsearch.host port: 9200 + index: + my_index: + enabled: true + template: elasticsearch/files/my_index_template.json Read more =========