Merge "Fix missing commas in kolla_podman_worker"

This commit is contained in:
Zuul 2024-06-10 15:01:10 +00:00 committed by Gerrit Code Review
commit 0dd6ed7a9c
2 changed files with 10 additions and 3 deletions
ansible/module_utils
releasenotes/notes

@ -30,12 +30,12 @@ CONTAINER_PARAMS = [
'cpu_period', # int
'cpu_quota', # int
'cpuset_cpus', # str
'cpu_shares' # int
'cpu_shares', # int
'cpuset_mems', # str
'kernel_memory', # int or string
'mem_limit', # (Union[int, str])
'mem_reservation', # (Union[int, str]): Memory soft limit.
'memswap_limit' # (Union[int, str]): Maximum amount of memory
'memswap_limit', # (Union[int, str]): Maximum amount of memory
# + swap a container is allowed to consume.
'ulimits', # List[Ulimit]
'blkio_weight', # int between 10 and 1000
@ -58,7 +58,7 @@ CONTAINER_PARAMS = [
'remove', # bool
'restart_tries', # int doesn't matter done by systemd
'stop_timeout', # int
'tty' # bool
'tty', # bool
# VOLUMES NOT WORKING HAS TO BE DONE WITH MOUNTS
'volumes', # array of dict
'volumes_from', # array of strings

@ -0,0 +1,7 @@
---
fixes:
- |
Fixes a bug in kolla_podman_worker, where missing commas
in list of strings create implicit concatenation of items
that should be separate.
`LP#2067278 <https://launchpad.net/bugs/2067278>`__