mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-07-11 08:18:11 -02:30
Remove dangling 'list' from mutually_exclusive in kube.py (#13352)
The mutually_exclusive constraint referenced 'list', a parameter that does not exist in argument_spec. Remove the dead constraint. Signed-off-by: Adesh Deshmukh <adeshkd123@gmail.com>
This commit is contained in:
@@ -325,9 +325,8 @@ def main():
|
|||||||
log_level=dict(default=0, type='int'),
|
log_level=dict(default=0, type='int'),
|
||||||
state=dict(default='present', choices=['present', 'absent', 'latest', 'reloaded', 'stopped', 'exists']),
|
state=dict(default='present', choices=['present', 'absent', 'latest', 'reloaded', 'stopped', 'exists']),
|
||||||
recursive=dict(default=False, type='bool'),
|
recursive=dict(default=False, type='bool'),
|
||||||
),
|
),
|
||||||
mutually_exclusive=[['filename', 'list']]
|
)
|
||||||
)
|
|
||||||
|
|
||||||
changed = False
|
changed = False
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user