Reporting should not be declared as x-pack feature

This commit is contained in:
Dale McDiarmid 2017-01-16 12:19:22 +00:00
parent 719bd67fde
commit 0656a19501
4 changed files with 3 additions and 7 deletions

View file

@ -209,7 +209,7 @@ ansible-playbook -i hosts ./your-playbook.yml
X-Pack features, such as Security, are supported. This feature is currently experimental. To enable X-Pack set the parameter `es_enable_xpack` to true and list the required features in the parameter `es_xpack_features`. X-Pack features, such as Security, are supported. This feature is currently experimental. To enable X-Pack set the parameter `es_enable_xpack` to true and list the required features in the parameter `es_xpack_features`.
The parameter `es_xpack_features` by default enables all features i.e. it defaults to ["alerting","monitoring","graph","security","reporting"] The parameter `es_xpack_features` by default enables all features i.e. it defaults to ["alerting","monitoring","graph","security"]
The following additional parameters allow X-Pack to be configured: The following additional parameters allow X-Pack to be configured:

View file

@ -24,7 +24,7 @@ es_work_dir: "/tmp/elasticsearch"
es_max_open_files: 65536 es_max_open_files: 65536
es_allow_downgrades: false es_allow_downgrades: false
es_enable_xpack: false es_enable_xpack: false
es_xpack_features: ["alerting","monitoring","graph","security","reporting"] es_xpack_features: ["alerting","monitoring","graph","security"]
#These are used for internal operations performed by ansible. #These are used for internal operations performed by ansible.
#They do not effect the current configuration #They do not effect the current configuration
es_api_host: "localhost" es_api_host: "localhost"

View file

@ -9,7 +9,7 @@
#List currently installed plugins - ignore xpack if > v 2.0 #List currently installed plugins - ignore xpack if > v 2.0
- name: Check installed elasticsearch plugins - name: Check installed elasticsearch plugins
shell: "{{es_home}}/bin/elasticsearch-plugin list | grep -vE 'x-pack|license'" shell: "{{es_home}}/bin/elasticsearch-plugin list | grep -vE 'x-pack'"
register: installed_plugins register: installed_plugins
failed_when: "'ERROR' in installed_plugins.stdout" failed_when: "'ERROR' in installed_plugins.stdout"
changed_when: False changed_when: False

View file

@ -35,7 +35,3 @@ xpack.monitoring.enabled: false
{% if not "alerting" in es_xpack_features %} {% if not "alerting" in es_xpack_features %}
xpack.watcher.enabled: false xpack.watcher.enabled: false
{% endif %} {% endif %}
{% if not "reporting" in es_xpack_features %}
xpack.reporting.enabled: false
{% endif %}