blob: 6d8f4155bc25d15c38cb6f4730f1507b3dba2f81 [file] [log] [blame]
Zack Williams2d325cb2017-10-23 11:21:05 -07001---
Matteo Scandolo3896c472017-08-01 13:31:42 -07002# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Zack Williams9cea13e2017-07-25 16:32:59 -070016# dns-nsd/defaults/main.yml
Zack Williams99adf6b2016-03-14 17:01:08 -070017
Zack Williams9cea13e2017-07-25 16:32:59 -070018site_name: placeholder-sitename
19site_suffix: "{{ site_name }}.test"
20
Zack Williams6dc2d452017-12-20 17:50:49 -070021headnode_dns: head1
Zack Williams9cea13e2017-07-25 16:32:59 -070022
Zack Williams2f5f2bd2017-12-01 15:04:22 -070023management_net_cidr: "10.1.0.0/24"
Zack Williams9cea13e2017-07-25 16:32:59 -070024
25# node lists
26head_lxd_list: []
27physical_node_list: []
28
Zack Williams6dc2d452017-12-20 17:50:49 -070029# NOTE - many of the below settings are shared with the dns-nsd role, and you
30# may need to update them in the defaults of both.
31
32nsd_conf: "/etc/nsd/nsd.conf"
33nsd_zonesdir: "/var/lib/nsd/zones"
34
35nsd_group: "nsd"
36
37nsd_ip: 127.0.0.1
38nsd_port: 53
39
40dns_ttl: 3600
41
Zack Williams9cea13e2017-07-25 16:32:59 -070042# DNS settings for NSD/Unbound
43nsd_zones:
44 - name: "{{ site_suffix }}"
Zack Williams6dc2d452017-12-20 17:50:49 -070045 cidr: "{{ management_net_cidr }}"
Zack Williams9cea13e2017-07-25 16:32:59 -070046 soa: ns1
47 ns:
48 - { name: ns1 }
49 nodelists:
50 - head_lxd_list
51 - physical_node_list
52 aliases:
Zack Williams2d325cb2017-10-23 11:21:05 -070053 - { name: "apt-cache", dest: "{{ headnode_dns }}" }
54 - { name: "cordloghost", dest: "{{ headnode_dns }}" }
55 - { name: "consul", dest: "{{ headnode_dns }}" }
56 - { name: "docker", dest: "{{ headnode_dns }}" }
57 - { name: "mavenrepo", dest: "{{ headnode_dns }}" }
58 - { name: "ns", dest: "{{ headnode_dns }}" }
59 - { name: "ns1", dest: "{{ headnode_dns }}" }
60 - { name: "onos-cord", dest: "{{ headnode_dns }}" }
61 - { name: "onos-fabric", dest: "{{ headnode_dns }}" }
62 - { name: "xos", dest: "{{ headnode_dns }}" }
63 - { name: "xos-chameleon", dest: "{{ headnode_dns }}" }
64 - { name: "xos-consul", dest: "{{ headnode_dns }}" }
65 - { name: "xos-core", dest: "{{ headnode_dns }}" }
66 - { name: "xos-gui", dest: "{{ headnode_dns }}" }
67 - { name: "xos-tosca", dest: "{{ headnode_dns }}" }
68 - { name: "xos-ws", dest: "{{ headnode_dns }}" }
69