2bd74e1baf
Upgrade openstack-helm-infra to below version. commit 34d54f2812b7d54431d548cff08fe8da7f838124 Date: Sat Apr 11 15:24:54 2020 +0200 Cleanup py27 support and docs Below 3 patches are removed as they are already merged. Allow-multiple-containers-per-daemonset-pod.patch Add-TLS-support-for-Gnocchi-public-endpoint.patch Update ingress chart for Helm v3 Story: 2007474 Task: 39394 Change-Id: Icf624c8a0a6c74c8cfdb75ad45162e4a7aa5e404 Signed-off-by: Zhipeng Liu <zhipengs.liu@intel.com>
29 lines
765 B
Diff
29 lines
765 B
Diff
From 93ec2454cba41bf3de1419bada1f145f1ca9dbd9 Mon Sep 17 00:00:00 2001
|
|
From: Al Bailey <Al.Bailey@windriver.com>
|
|
Date: Wed, 20 Feb 2019 13:56:27 -0600
|
|
Subject: [PATCH 3/4] Set Min NGINX handles
|
|
|
|
Signed-off-by: Robert Church <robert.church@windriver.com>
|
|
---
|
|
mariadb/files/nginx.tmpl | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/mariadb/files/nginx.tmpl b/mariadb/files/nginx.tmpl
|
|
index 5ec3d0d..07b7cc5 100644
|
|
--- a/mariadb/files/nginx.tmpl
|
|
+++ b/mariadb/files/nginx.tmpl
|
|
@@ -23,7 +23,9 @@ daemon off;
|
|
|
|
worker_processes {{ $cfg.WorkerProcesses }};
|
|
pid /run/nginx.pid;
|
|
-{{ if ne .MaxOpenFiles 0 }}
|
|
+{{ if lt .MaxOpenFiles 2048 }}
|
|
+worker_rlimit_nofile 2048;
|
|
+{{else}}
|
|
worker_rlimit_nofile {{ .MaxOpenFiles }};
|
|
{{ end }}
|
|
|
|
--
|
|
2.16.5
|
|
|