Improve YAML examples - packaging/kibana_plugin.py (#19409)
This commit is contained in:
parent
2f90091f0a
commit
f1b5dde4cb
1 changed files with 7 additions and 7 deletions
|
@ -82,19 +82,19 @@ options:
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Install Elasticsearch head plugin
|
- name: Install Elasticsearch head plugin
|
||||||
- kibana_plugin:
|
kibana_plugin:
|
||||||
state: present
|
state: present
|
||||||
name=: elasticsearch/marvel
|
name: elasticsearch/marvel
|
||||||
|
|
||||||
# Install specific version of a plugin
|
- name: Install specific version of a plugin
|
||||||
- kibana_plugin:
|
kibana_plugin:
|
||||||
state: present
|
state: present
|
||||||
name: elasticsearch/marvel
|
name: elasticsearch/marvel
|
||||||
version: '2.3.3'
|
version: '2.3.3'
|
||||||
|
|
||||||
# Uninstall Elasticsearch head plugin
|
- name: Uninstall Elasticsearch head plugin
|
||||||
- kibana_plugin:
|
kibana_plugin:
|
||||||
state: absent
|
state: absent
|
||||||
name: elasticsearch/marvel
|
name: elasticsearch/marvel
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue