blob: a9afcc1db47836ef2f24a2b6cfcd53faa24625f5 [file] [log] [blame]
Zack Williams99adf6b2016-03-14 17:01:08 -07001---
Zack Williamsba5549c2017-03-25 15:04:45 -07002# dns-unbound/defaults/main.yml
Zack Williams99adf6b2016-03-14 17:01:08 -07003
4unbound_conf: "/var/unbound/etc/unbound.conf"
5unbound_group: "wheel"
6
Zack Williamsba5549c2017-03-25 15:04:45 -07007unbound_listen_on_default: False
8
Zack Williams9cea13e2017-07-25 16:32:59 -07009unbound_listen_all: True
Zack Williamsba5549c2017-03-25 15:04:45 -070010
Zack Williams9cea13e2017-07-25 16:32:59 -070011# NOTE - many of the below settings are shared with the dns-nsd role, and you
12# may need to update them in the defaults of both.
13
14site_name: placeholder-sitename
15site_suffix: "{{ site_name }}.test"
16
17headnode: head1
18
19# Management IP range from DHCP settings
20mgmt_ipv4_first_octets: "192.168.200"
21mgmt_name_reverse_unbound: "168.192.in-addr.arpa"
22
23unbound_interfaces:
24 - "{{ mgmt_ipv4_first_octets }}.1/24"
25
26# node lists
27head_lxd_list: []
28physical_node_list: []
29
30# DNS settings for NSD/Unbound
31nsd_zones:
32 - name: "{{ site_suffix }}"
33 ipv4_first_octets: "{{ mgmt_ipv4_first_octets }}"
34 name_reverse_unbound: "{{ mgmt_name_reverse_unbound }}"
35 soa: ns1
36 ns:
37 - { name: ns1 }
38 nodelists:
39 - head_lxd_list
40 - physical_node_list
41 aliases:
42 - { name: "apt-cache", dest: "{{ headnode }}" }
43 - { name: "cordloghost", dest: "{{ headnode }}" }
44 - { name: "consul", dest: "{{ headnode }}" }
45 - { name: "docker", dest: "{{ headnode }}" }
46 - { name: "mavenrepo", dest: "{{ headnode }}" }
47 - { name: "ns", dest: "{{ headnode }}" }
48 - { name: "ns1", dest: "{{ headnode }}" }
49 - { name: "onos-cord", dest: "{{ headnode }}" }
50 - { name: "xos", dest: "{{ headnode }}" }
51 - { name: "xos-chameleon", dest: "{{ headnode }}" }
52 - { name: "xos-consul", dest: "{{ headnode }}" }
53 - { name: "xos-core", dest: "{{ headnode }}" }
54 - { name: "xos-gui", dest: "{{ headnode }}" }
55 - { name: "xos-tosca", dest: "{{ headnode }}" }
56 - { name: "xos-ws", dest: "{{ headnode }}" }
57