From 5fa34b6b60e351bbfd7ecad2e6c50adb03f4987b Mon Sep 17 00:00:00 2001 From: Timothy Appnel Date: Thu, 8 Oct 2020 13:09:21 -0400 Subject: [PATCH] Embedded docs clarification in helm_plugin --- plugins/modules/helm_plugin.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/modules/helm_plugin.py b/plugins/modules/helm_plugin.py index a212394f..e5e28a4b 100644 --- a/plugins/modules/helm_plugin.py +++ b/plugins/modules/helm_plugin.py @@ -17,7 +17,7 @@ author: requirements: - "helm (https://github.com/helm/helm/releases)" description: - - Install, uninstall Helm plugins. + - Manages Helm plugins. options: release_namespace: description: @@ -29,8 +29,8 @@ options: #Helm options state: description: - - If C(state=present), Helm plugin will be installed. - - If C(state=absent), Helm plugin will be uninstalled. + - If C(state=present) the Helm plugin will be installed. + - If C(state=absent) the Helm plugin will be removed. choices: [ absent, present ] default: present type: str @@ -61,7 +61,7 @@ EXAMPLES = r''' plugin_path: https://domain/path/to/plugin.tar.gz state: present -- name: Uninstall Helm env plugin +- name: Remove Helm env plugin community.kubernetes.helm_plugin: plugin_name: env state: absent