Browse Source

Merge pull request #8345 from vrutkovs/node-dnsmasq-required

Install node-dnsmasq configuration file
Vadim Rutkovsky 7 years ago
parent
commit
dd0b6ced86
1 changed files with 6 additions and 0 deletions
  1. 6 0
      roles/openshift_node/tasks/dnsmasq.yml

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

@@ -5,6 +5,12 @@
     dest: /etc/dnsmasq.d/origin-dns.conf
   notify: restart dnsmasq
 
+- name: Install node-dnsmasq configuration
+  template:
+    src: node-dnsmasq.conf.j2
+    dest: /etc/dnsmasq.d/node-dnsmasq.conf
+  notify: restart dnsmasq
+
 - name: Deploy additional dnsmasq.conf
   template:
     src: "{{ openshift_node_dnsmasq_additional_config_file }}"