X-Git-Url: https://gerrit.mcp.mirantis.com/gitweb?p=salt-formulas%2Felasticsearch.git;a=blobdiff_plain;f=README.rst;h=21be912a18760c1feb733382a56380f782839c13;hp=966b6b7174bf7ca866bde5fd2eac4acd6c2a2cdc;hb=5b25bd905a3ffaa26ddaa8be95d58e19a8a4c1b1;hpb=0b13814227f691cd0e476d715c836c348a2228be diff --git a/README.rst b/README.rst index 966b6b7..21be912 100644 --- a/README.rst +++ b/README.rst @@ -145,7 +145,7 @@ Client with host and port: host: elasticsearch.host port: 9200 -Client where you download an index template that is stored in the direcotry +Client where you download an index template that is stored in the directory *files/*: .. code-block:: yaml @@ -161,6 +161,46 @@ Client where you download an index template that is stored in the direcotry enabled: true template: elasticsearch/files/my_index_template.json +Client where you download an index template from the metadata definition and force index creation: + +.. code-block:: yaml + + elasticsearch: + client: + enabled: true + server: + host: elasticsearch.host + port: 9200 + index: + my_index: + enabled: true + force_operation: true + definition: + template: notifications + settings: + number_of_shards: 5 + number_of_replicas: 1 + mappings: + notification: + properties: + applicationId: + type: long + content: + type: text + fields: + keyword: + type: keyword + ignore_above: 256 + +Upgrade operations +------------------ + +Default elasticsearch client state can only create index temlates. To update exisiting ones according to pillar dedicated state should be run explicitly: + +.. code-block:: bash + + salt -C 'I@elasticsearch:client' state.sls elasticsearch.client.update_index_templates + Read more =========