podman_container: move ulimit into a list

Change-Id: Ibb8f72687c4a33079a6b86b1713edd90a6e02ef2
This commit is contained in:
Emilien Macchi 2019-10-04 11:08:01 -04:00 committed by Sagi Shnaidman
parent 8ee136a0e8
commit fdb5c22b1a
1 changed files with 4 additions and 4 deletions

View File

@ -550,7 +550,7 @@ options:
ulimit:
description:
- Ulimit options
type: str
type: list
user:
description:
- Sets the username or UID used and optionally the groupname or GID for
@ -1053,8 +1053,8 @@ def construct_command_from_params(action, params):
if params['uidmap']:
cmd += ['--uidmap', params['uidmap']]
if params['ulimit']:
cmd += ['--ulimit', params['ulimit']]
for u in params['ulimit']:
cmd += ['--ulimit', u]
if params['user']:
cmd += ['--user', params['user']]
@ -1422,7 +1422,7 @@ def main():
tmpfs=dict(type='str'),
tty=dict(type='bool'),
uidmap=dict(type='str'),
ulimit=dict(type='str'),
ulimit=dict(type='list', elements='str', default=[]),
user=dict(type='str'),
userns=dict(type='str'),
uts=dict(type='str'),