mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Corrected the helm module documentation to the correct default state (installed -> present). (#35950) (#35951)
This commit is contained in:
parent
66743f33fa
commit
5861d3333c
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ options:
|
||||||
- Whether to install C(present), remove C(absent), or purge C(purged) a package.
|
- Whether to install C(present), remove C(absent), or purge C(purged) a package.
|
||||||
required: false
|
required: false
|
||||||
choices: ['absent', 'purged', 'present']
|
choices: ['absent', 'purged', 'present']
|
||||||
default: "installed"
|
default: "present"
|
||||||
chart:
|
chart:
|
||||||
description: |
|
description: |
|
||||||
A map describing the chart to install. For example:
|
A map describing the chart to install. For example:
|
||||||
|
@ -84,7 +84,7 @@ EXAMPLES = '''
|
||||||
source:
|
source:
|
||||||
type: repo
|
type: repo
|
||||||
location: https://kubernetes-charts.storage.googleapis.com
|
location: https://kubernetes-charts.storage.googleapis.com
|
||||||
state: installed
|
state: present
|
||||||
name: my-memcached
|
name: my-memcached
|
||||||
namespace: default
|
namespace: default
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue