Added merge_type to kubevirt_template module (#54216)
* Added merge_type to kubevirt_template module * Added docs for merge_type
This commit is contained in:
parent
76f1f96163
commit
768bf5844a
1 changed files with 10 additions and 0 deletions
|
@ -35,6 +35,12 @@ options:
|
|||
user must use Ansible structure of the parameters not the Kubernetes API structure. For more information
|
||||
please take a look at M(kubevirt_vm) module and at EXAMPLES section, where you can see example.
|
||||
type: list
|
||||
merge_type:
|
||||
description:
|
||||
- Whether to override the default patch merge approach with a specific type. By default, the strategic
|
||||
merge will typically be used.
|
||||
type: list
|
||||
choices: [ json, merge, strategic-merge ]
|
||||
display_name:
|
||||
description:
|
||||
- "A brief, user-friendly name, which can be employed by user interfaces."
|
||||
|
@ -208,6 +214,10 @@ TEMPLATE_ARG_SPEC = {
|
|||
],
|
||||
'default': 'present'
|
||||
},
|
||||
'merge_type': {
|
||||
'type': 'list',
|
||||
'choices': ['json', 'merge', 'strategic-merge']
|
||||
},
|
||||
'objects': {
|
||||
'type': 'list',
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue