소스 검색

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