Increase DockerNovaComputeUlimit default value

With large number of OSDs, where each OSD need a connection, the default
nofile (1024) of nova_compute is too small. This changes the default
DockerNovaComputeUlimit to 131072 what is the same for cinder.

Change-Id: Id19da6e8b7bfbe0e47b191e92c08fc34d1853a63
(cherry picked from commit 983d17e023)
(cherry picked from commit e2e41c0df3)
This commit is contained in:
Martin Schuppert 2019-04-12 13:56:29 +02:00
parent f9bc1017a8
commit 3c0a2190fc
2 changed files with 7 additions and 1 deletions

View File

@ -11,7 +11,7 @@ parameters:
description: The container image to use for the nova_libvirt config_volume
type: string
DockerNovaComputeUlimit:
default: ['nofile=1024']
default: ['nofile=131072']
description: ulimit for Nova Compute Container
type: comma_delimited_list
ServiceData:

View File

@ -0,0 +1,6 @@
---
fixes:
- |
With large number of OSDs, where each OSD need a connection, the default
nofile (1024) of nova_compute is too small. This changes the default
DockerNovaComputeUlimit to 131072 what is the same for cinder.