Updated git submodules
[doc.git] / docs / guides / onap-developer / settingup / install-designate.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2    http://creativecommons.org/licenses/by/4.0
3    Copyright 2017 ONAP
4
5
6 .. contents::
7    :depth: 2
8 ..
9
10 =====================================
11 **Setting Up Designate on Openstack**
12 =====================================
13
14 .. tip::
15  - `Openstack Designate documentation (LATEST) <https://docs.openstack.org/designate/latest/index.html>`_ is an important starting point for configuring Designate. Here, the focus will be on designate for ONAP.
16  - Notice the documentation version mentioned in the URL, e.g. ocata/, pike/, latest/ ...
17
18 **Designate Overview**
19 ======================
20 Designate is a *DNS as a Service* components. It allows API based interaction with a DNS server.
21
22 This DNS server can be any *well configured* DNS server.
23
24 Designate allows to create **any** entries in the DNS and thus has to be used wisely (see `Designate Production Guidelines <https://docs.openstack.org/designate/latest/admin/production-guidelines.html>` to have a complete explanation).
25
26 In order to be valuable, Designate must be plugged with a DNS Server that will be used:
27
28  - your global (pool of) DNS Server(s). Every entries put by Designate will be seen by everybody. It may then be very dangerous.
29  - a specific (pool of) DNS Server(s) for your openstack deployment. DNS resolution will work only for your VM. **This is the one that has been tested**.
30  - a specific (pool of) DNS Server(s) for an openstack tenant. Not a lot of doc is available for that so this part won't be explained here.
31
32 **Designate usage in ONAP**
33 ===========================
34
35 Currently, only DCAE Gen2 deployment needs designate to work.
36
37 DCAE deployment use cloudify with openstack plugin to start the needed VM for DCAE. In particular, Designate is used to give the IP address of consul server. Thus, the others VMs needs to access the DNS server where Designate push records.
38
39 In order to do that, we'll have to deploy DNS Server(s), configure them to accept dns updates and configure our networks to point to this DNS.
40 This How-To will use bind but you can change to any of the `proposed backends <https://docs.openstack.org/designate/latest/contributor/support-matrix.html>`.
41
42 Limitations with Heat automated deployment
43 ------------------------------------------
44 The current design of Heat installer installs DCAE needed VM into the same tenant of the same openstack of the other ONAP components. Thus, this openstack tenant must support Designate.
45
46 Limitations with Kubernetes automated deployment
47 ------------------------------------------------
48 The current design of kubernetes deployment installs DCAE into any openstack instances in any tenant. It still mandates designate on the tenant.
49
50 **Quick Install Guide**
51 =======================
52
53 Few steps have to be performed. The detail of each steps are in `the config guide of Openstack Designate <https://docs.openstack.org/designate/latest/install/index.html>`:
54
55 1. Install bind9 nameserver
56 2. Configure it to accept dns updates and forward to your master DNS Server. Example configuration is below:
57
58    .. code:: bash
59
60     root@designate:~# cat /etc/bind/named.conf.options
61     include "/etc/bind/rndc.key";
62     options {
63         directory "/var/cache/bind";
64         allow-new-zones yes;
65         dnssec-validation auto;
66         listen-on port 53 { 10.203.157.79; };
67         forwarders {
68                 8.8.8.8;
69                 8.8.4.4;
70                 };
71         forward only;
72         allow-query { any; };
73         recursion yes;
74         minimal-responses yes;
75         };
76     controls {
77         inet 10.203.157.79 port 953 allow { 10.203.157.79; } keys { "rndc-key"; };
78         };
79     root@designate:~#
80     
81 3. Configure Designate in openstack. Please see `this guide <https://docs.openstack.org/mitaka/networking-guide/config-dns-int.html>` for more details.
82 4. Create a pool pointing to your nameserver
83
84 Now, when starting the Heat Deployment, use this nameserver. When the stack heat has started, retrieve the random string (XXX in the example) and create the zone XXX.yourdomain (yourdomain is what you have filled in `dcae_domain` in onap_openstack.env).
85 For OOM, use the DNS on the container host so it can give it to the relevant VM.