From 5861d3333cc9d1f1f5e28840c5a305d75b9b7025 Mon Sep 17 00:00:00 2001 From: Charl van Niekerk Date: Tue, 13 Feb 2018 13:34:17 +0100 Subject: [PATCH] Corrected the helm module documentation to the correct default state (installed -> present). (#35950) (#35951) --- lib/ansible/modules/cloud/misc/helm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/misc/helm.py b/lib/ansible/modules/cloud/misc/helm.py index 4e9649f9ac..7b795cfc0e 100644 --- a/lib/ansible/modules/cloud/misc/helm.py +++ b/lib/ansible/modules/cloud/misc/helm.py @@ -48,7 +48,7 @@ options: - Whether to install C(present), remove C(absent), or purge C(purged) a package. required: false choices: ['absent', 'purged', 'present'] - default: "installed" + default: "present" chart: description: | A map describing the chart to install. For example: @@ -84,7 +84,7 @@ EXAMPLES = ''' source: type: repo location: https://kubernetes-charts.storage.googleapis.com - state: installed + state: present name: my-memcached namespace: default