mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
docker_swarm_service: Specify choices on update_order (#52741)
* Specify choices on update_order * Drop quoting * Add changelog fragment * Revert "Add changelog fragment" This reverts commit 6a4a2b903b859a41356ff55a8937da976345755d.
This commit is contained in:
parent
4c150b39c1
commit
f5d9eb1dea
1 changed files with 4 additions and 1 deletions
|
@ -464,6 +464,9 @@ options:
|
|||
- Corresponds to the C(--update-order) option of C(docker service create).
|
||||
- Requires API version >= 1.29.
|
||||
type: str
|
||||
choices:
|
||||
- stop-first
|
||||
- start-first
|
||||
user:
|
||||
description:
|
||||
- Sets the username or UID used for the specified command.
|
||||
|
@ -1790,7 +1793,7 @@ def main():
|
|||
update_failure_action=dict(type='str', choices=['continue', 'pause']),
|
||||
update_monitor=dict(type='raw'),
|
||||
update_max_failure_ratio=dict(type='float'),
|
||||
update_order=dict(type='str'),
|
||||
update_order=dict(type='str', choices=['stop-first', 'start-first']),
|
||||
user=dict(type='str'),
|
||||
working_dir=dict(type='str'),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue