Merge "Add ContainerNovaLibvirtUlimit to tweak Ulimits"
This commit is contained in:
commit
fd4a51c18b
@ -12,6 +12,10 @@ parameters:
|
||||
ContainerNovaLibvirtConfigImage:
|
||||
description: The container image to use for the nova_libvirt config_volume
|
||||
type: string
|
||||
ContainerNovaLibvirtUlimit:
|
||||
default: ['nofile=131072', 'nproc=126960']
|
||||
description: ulimit for Nova Libvirt Container
|
||||
type: comma_delimited_list
|
||||
ServiceData:
|
||||
default: {}
|
||||
description: Dictionary packing service data
|
||||
@ -600,6 +604,7 @@ outputs:
|
||||
nova_virtlogd:
|
||||
start_order: 0
|
||||
image: {get_param: ContainerNovaLibvirtImage}
|
||||
ulimit: {get_param: ContainerNovaLibvirtUlimit}
|
||||
net: host
|
||||
pid: host
|
||||
security_opt: label=disable
|
||||
@ -625,6 +630,7 @@ outputs:
|
||||
nova_libvirt:
|
||||
start_order: 1
|
||||
image: {get_param: ContainerNovaLibvirtImage}
|
||||
ulimit: {get_param: ContainerNovaLibvirtUlimit}
|
||||
net: host
|
||||
pid: host
|
||||
privileged: true
|
||||
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
Add `ContainerNovaLibvirtUlimit` to configure Ulimit for containerized
|
||||
Libvirt. Defaults to ``nofile=131072,nproc=126960``.
|
Loading…
Reference in New Issue
Block a user