mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
allow passing the --allow-root flag to kibana_plugin module (#2014)
* kibana_plugin module parameter force is a boolean * allow passing the --allow-root flag to kibana_plugin module * add changelog fragment for kibana_plugin --allow-root Co-authored-by: Amin Vakil <info@aminvakil.com> Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Amin Vakil <info@aminvakil.com> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
84b54ad6a2
commit
3162ed6795
2 changed files with 28 additions and 8 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- kibana_plugin - add parameter for passing ``--allow-root`` flag to kibana and kibana-plugin commands (https://github.com/ansible-collections/community.general/pull/2014).
|
|
@ -58,7 +58,13 @@ options:
|
||||||
description:
|
description:
|
||||||
- Delete and re-install the plugin. Can be useful for plugins update.
|
- Delete and re-install the plugin. Can be useful for plugins update.
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: false
|
||||||
|
allow_root:
|
||||||
|
description:
|
||||||
|
- Whether to allow C(kibana) and C(kibana-plugin) to be run as root. Passes the C(--allow-root) flag to these commands.
|
||||||
|
type: bool
|
||||||
|
default: false
|
||||||
|
version_added: 2.3.0
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
@ -152,7 +158,7 @@ def parse_error(string):
|
||||||
return string
|
return string
|
||||||
|
|
||||||
|
|
||||||
def install_plugin(module, plugin_bin, plugin_name, url, timeout, kibana_version='4.6'):
|
def install_plugin(module, plugin_bin, plugin_name, url, timeout, allow_root, kibana_version='4.6'):
|
||||||
if LooseVersion(kibana_version) > LooseVersion('4.6'):
|
if LooseVersion(kibana_version) > LooseVersion('4.6'):
|
||||||
kibana_plugin_bin = os.path.join(os.path.dirname(plugin_bin), 'kibana-plugin')
|
kibana_plugin_bin = os.path.join(os.path.dirname(plugin_bin), 'kibana-plugin')
|
||||||
cmd_args = [kibana_plugin_bin, "install"]
|
cmd_args = [kibana_plugin_bin, "install"]
|
||||||
|
@ -169,6 +175,9 @@ def install_plugin(module, plugin_bin, plugin_name, url, timeout, kibana_version
|
||||||
if timeout:
|
if timeout:
|
||||||
cmd_args.append("--timeout %s" % timeout)
|
cmd_args.append("--timeout %s" % timeout)
|
||||||
|
|
||||||
|
if allow_root:
|
||||||
|
cmd_args.append('--allow-root')
|
||||||
|
|
||||||
cmd = " ".join(cmd_args)
|
cmd = " ".join(cmd_args)
|
||||||
|
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
|
@ -182,13 +191,16 @@ def install_plugin(module, plugin_bin, plugin_name, url, timeout, kibana_version
|
||||||
return True, cmd, out, err
|
return True, cmd, out, err
|
||||||
|
|
||||||
|
|
||||||
def remove_plugin(module, plugin_bin, plugin_name, kibana_version='4.6'):
|
def remove_plugin(module, plugin_bin, plugin_name, allow_root, kibana_version='4.6'):
|
||||||
if LooseVersion(kibana_version) > LooseVersion('4.6'):
|
if LooseVersion(kibana_version) > LooseVersion('4.6'):
|
||||||
kibana_plugin_bin = os.path.join(os.path.dirname(plugin_bin), 'kibana-plugin')
|
kibana_plugin_bin = os.path.join(os.path.dirname(plugin_bin), 'kibana-plugin')
|
||||||
cmd_args = [kibana_plugin_bin, "remove", plugin_name]
|
cmd_args = [kibana_plugin_bin, "remove", plugin_name]
|
||||||
else:
|
else:
|
||||||
cmd_args = [plugin_bin, "plugin", PACKAGE_STATE_MAP["absent"], plugin_name]
|
cmd_args = [plugin_bin, "plugin", PACKAGE_STATE_MAP["absent"], plugin_name]
|
||||||
|
|
||||||
|
if allow_root:
|
||||||
|
cmd_args.append('--allow-root')
|
||||||
|
|
||||||
cmd = " ".join(cmd_args)
|
cmd = " ".join(cmd_args)
|
||||||
|
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
|
@ -202,8 +214,12 @@ def remove_plugin(module, plugin_bin, plugin_name, kibana_version='4.6'):
|
||||||
return True, cmd, out, err
|
return True, cmd, out, err
|
||||||
|
|
||||||
|
|
||||||
def get_kibana_version(module, plugin_bin):
|
def get_kibana_version(module, plugin_bin, allow_root):
|
||||||
cmd_args = [plugin_bin, '--version']
|
cmd_args = [plugin_bin, '--version']
|
||||||
|
|
||||||
|
if allow_root:
|
||||||
|
cmd_args.append('--allow-root')
|
||||||
|
|
||||||
cmd = " ".join(cmd_args)
|
cmd = " ".join(cmd_args)
|
||||||
rc, out, err = module.run_command(cmd)
|
rc, out, err = module.run_command(cmd)
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
|
@ -222,7 +238,8 @@ def main():
|
||||||
plugin_bin=dict(default="/opt/kibana/bin/kibana", type="path"),
|
plugin_bin=dict(default="/opt/kibana/bin/kibana", type="path"),
|
||||||
plugin_dir=dict(default="/opt/kibana/installedPlugins/", type="path"),
|
plugin_dir=dict(default="/opt/kibana/installedPlugins/", type="path"),
|
||||||
version=dict(default=None),
|
version=dict(default=None),
|
||||||
force=dict(default="no", type="bool")
|
force=dict(default=False, type="bool"),
|
||||||
|
allow_root=dict(default=False, type="bool"),
|
||||||
),
|
),
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
@ -235,10 +252,11 @@ def main():
|
||||||
plugin_dir = module.params["plugin_dir"]
|
plugin_dir = module.params["plugin_dir"]
|
||||||
version = module.params["version"]
|
version = module.params["version"]
|
||||||
force = module.params["force"]
|
force = module.params["force"]
|
||||||
|
allow_root = module.params["allow_root"]
|
||||||
|
|
||||||
changed, cmd, out, err = False, '', '', ''
|
changed, cmd, out, err = False, '', '', ''
|
||||||
|
|
||||||
kibana_version = get_kibana_version(module, plugin_bin)
|
kibana_version = get_kibana_version(module, plugin_bin, allow_root)
|
||||||
|
|
||||||
present = is_plugin_present(parse_plugin_repo(name), plugin_dir)
|
present = is_plugin_present(parse_plugin_repo(name), plugin_dir)
|
||||||
|
|
||||||
|
@ -252,10 +270,10 @@ def main():
|
||||||
if state == "present":
|
if state == "present":
|
||||||
if force:
|
if force:
|
||||||
remove_plugin(module, plugin_bin, name)
|
remove_plugin(module, plugin_bin, name)
|
||||||
changed, cmd, out, err = install_plugin(module, plugin_bin, name, url, timeout, kibana_version)
|
changed, cmd, out, err = install_plugin(module, plugin_bin, name, url, timeout, allow_root, kibana_version)
|
||||||
|
|
||||||
elif state == "absent":
|
elif state == "absent":
|
||||||
changed, cmd, out, err = remove_plugin(module, plugin_bin, name, kibana_version)
|
changed, cmd, out, err = remove_plugin(module, plugin_bin, name, allow_root, kibana_version)
|
||||||
|
|
||||||
module.exit_json(changed=changed, cmd=cmd, name=name, state=state, url=url, timeout=timeout, stdout=out, stderr=err)
|
module.exit_json(changed=changed, cmd=cmd, name=name, state=state, url=url, timeout=timeout, stdout=out, stderr=err)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue