瀏覽代碼

Increase maximum number of open file descriptors for dnsmasq

dnsmasq has problems releasing it's file descriptors when it reaches
the maximum number of open file descriptors, this is caused by the
OpenShift Extended Comformance Tests followed by the Node Vertical Test.

This patch mitigates the problem by increasing the maximim number of
open file descriptors so the node can pass the tests.

NOTE:
The real fix should be done in dnsmasq.

Fixes: rhbz#1608571

Fix code

Use handlersç
Ivan Chavero 6 年之前
父節點
當前提交
4c2ed9eb3b
共有 2 個文件被更改,包括 15 次插入0 次删除
  1. 13 0
      roles/openshift_node/tasks/dnsmasq.yml
  2. 2 0
      roles/openshift_node/tasks/files/override.conf

+ 13 - 0
roles/openshift_node/tasks/dnsmasq.yml

@@ -15,6 +15,19 @@
   when: openshift_node_dnsmasq_additional_config_file is defined
   notify: restart dnsmasq
 
+- name: Create override dnsmasq systemd unit directory
+  file:
+    path: /etc/systemd/system/dnsmasq.service.d
+    state: directory
+
+- name: Copy systemd dnsmasq unit override file
+  copy:
+    src: override.conf
+    dest: /etc/systemd/system/dnsmasq.service.d/override.conf
+  notify:
+    - reload systemd units
+    - restart dnsmasq
+
 - name: Enable dnsmasq
   systemd:
     name: dnsmasq

+ 2 - 0
roles/openshift_node/tasks/files/override.conf

@@ -0,0 +1,2 @@
+[Service]
+LimitNOFILE=65535