main.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---
  2. - name: Install Bind
  3. package: name=bind state=present
  4. when: not openshift.common.is_containerized | bool
  5. - name: Create docker build dir
  6. file: path=/tmp/dockerbuild state=directory
  7. when: openshift.common.is_containerized | bool
  8. - name: Install dockerfile
  9. template:
  10. dest: "/tmp/dockerbuild/Dockerfile"
  11. src: Dockerfile
  12. when: openshift.common.is_containerized | bool
  13. - name: Build Bind image
  14. docker_image: path="/tmp/dockerbuild" name="bind" state=present
  15. when: openshift.common.is_containerized | bool
  16. - name: Install bind service file
  17. template:
  18. dest: "/etc/systemd/system/named.service"
  19. src: named.service.j2
  20. when: openshift.common.is_containerized | bool
  21. - name: Create bind zone dir
  22. file: path=/var/named state=directory
  23. when: openshift.common.is_containerized | bool
  24. - name: Configure Bind
  25. template:
  26. src: "{{ item.src }}"
  27. dest: "{{ item.dest }}"
  28. with_items:
  29. - src: openshift-cluster.zone
  30. dest: /var/named/openshift-cluster.zone
  31. - src: named.conf
  32. dest: /etc/named.conf
  33. notify: restart bind
  34. - name: Enable Bind
  35. systemd:
  36. name: named
  37. state: started
  38. enabled: yes
  39. daemon_reload: yes