add missing 'ml' and 'graph' to templates/elasticsearch.yml.j2

This commit is contained in:
Daniel Chamot 2017-06-26 11:25:14 +02:00
parent 2c129af421
commit 5d85d03c9c

View file

@ -30,4 +30,12 @@ xpack.monitoring.enabled: false
{% if not "alerting" in es_xpack_features %}
xpack.watcher.enabled: false
{% endif %}
{% endif %}
{% if not "ml" in es_xpack_features %}
xpack.ml.enabled: false
{% endif %}
{% if not "graph" in es_xpack_features %}
xpack.graph.enabled: false
{% endif %}