mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-07 08:54:01 -07:00
Clean up module documentation (#36909)
* Clean up module documentation This PR includes: - Removal of `default: None` (and variations) - Removal of `required: false` - Fixing booleans and `type: bool` where required * Fix remaining (new) validation issues
This commit is contained in:
parent
58eb2e849d
commit
cdd21e2170
624 changed files with 1458 additions and 9114 deletions
|
@ -26,27 +26,21 @@ options:
|
|||
host:
|
||||
description:
|
||||
- Tiller's server host
|
||||
required: false
|
||||
default: "localhost"
|
||||
port:
|
||||
description:
|
||||
- Tiller's server port
|
||||
required: false
|
||||
default: 44134
|
||||
namespace:
|
||||
description:
|
||||
- Kubernetes namespace where the chart should be installed
|
||||
required: false
|
||||
default: "default"
|
||||
name:
|
||||
description:
|
||||
- Release name to manage
|
||||
required: false
|
||||
default: null
|
||||
state:
|
||||
description:
|
||||
- Whether to install C(present), remove C(absent), or purge C(purged) a package.
|
||||
required: false
|
||||
choices: ['absent', 'purged', 'present']
|
||||
default: "present"
|
||||
chart:
|
||||
|
@ -58,18 +52,16 @@ options:
|
|||
source:
|
||||
type: repo
|
||||
location: https://kubernetes-charts.storage.googleapis.com
|
||||
required: false
|
||||
default: {}
|
||||
values:
|
||||
description:
|
||||
- A map of value options for the chart.
|
||||
required: false
|
||||
default: {}
|
||||
disable_hooks:
|
||||
description:
|
||||
- Whether to disable hooks during the uninstall process
|
||||
required: false
|
||||
default: false
|
||||
type: bool
|
||||
default: 'no'
|
||||
'''
|
||||
|
||||
RETURN = ''' # '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue