Add tags to main.yml
This commit is contained in:
parent
e14ebe06ab
commit
aa129e4eb4
1 changed files with 17 additions and 1 deletions
|
|
@ -1,16 +1,32 @@
|
||||||
---
|
---
|
||||||
- name: check-parameters
|
- name: check-parameters
|
||||||
include: checkParameters.yml
|
include: checkParameters.yml
|
||||||
|
tags:
|
||||||
|
- check
|
||||||
- name: os-specific vars
|
- name: os-specific vars
|
||||||
include_vars: "{{ansible_os_family}}.yml"
|
include_vars: "{{ansible_os_family}}.yml"
|
||||||
- include: java.yml
|
- include: java.yml
|
||||||
|
tags:
|
||||||
|
- java
|
||||||
- include: elasticsearch.yml
|
- include: elasticsearch.yml
|
||||||
|
tags:
|
||||||
|
- install
|
||||||
- include: elasticsearch-config.yml
|
- include: elasticsearch-config.yml
|
||||||
|
tags:
|
||||||
|
- config
|
||||||
- include: elasticsearch-scripts.yml
|
- include: elasticsearch-scripts.yml
|
||||||
when: es_scripts
|
when: es_scripts
|
||||||
|
tags:
|
||||||
|
- scripts
|
||||||
- include: elasticsearch-plugins.yml
|
- include: elasticsearch-plugins.yml
|
||||||
when: es_plugins is defined or es_plugins_reinstall
|
when: es_plugins is defined or es_plugins_reinstall
|
||||||
|
tags:
|
||||||
|
- plugins
|
||||||
- include: elasticsearch-service.yml
|
- include: elasticsearch-service.yml
|
||||||
|
tags:
|
||||||
|
- service
|
||||||
- include: elasticsearch-templates.yml
|
- include: elasticsearch-templates.yml
|
||||||
when: es_templates
|
when: es_templates
|
||||||
- meta: flush_handlers
|
tags:
|
||||||
|
- templates
|
||||||
|
- meta: flush_handlers
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue