Merge "Update ONAP Architecture diagram"
[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:: `Openstack Designate documentation <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.
15
16 **Designate Overview**
17 ======================
18 Designate is a *DNS as a Service* components. It allows API based interaction with a DNS server.
19
20 This DNS server can be any *well configured* DNS server.
21
22 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).
23
24 In order to be valuable, Designate must be plugged with a DNS Server that will be used:
25
26  - your global (pool of) DNS Server(s). Every entries put by Designate will be seen by everybody. It may then be very dangerous.
27  - 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**.
28  - 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.
29
30 **Designate usage in ONAP**
31 ===========================
32
33 Currently, only DCAE Gen2 deployment needs designate to work.
34
35 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.
36
37 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.
38 This Fow-To will use bind but you can change to any of the `proposed backends <https://docs.openstack.org/designate/latest/contributor/support-matrix.html>`.
39
40 Limitations with Heat automated deployment
41 ------------------------------------------
42 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.
43
44 Limitations with Kubernetes automated deployment
45 ------------------------------------------------
46 The current design of kubernetes deployment installs DCAE into any openstack instances in any tenant. It stills mandate designate on the tenant.
47
48 **Quick Install Guide**
49 =======================
50
51 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>`:
52
53 1. Install bind9 nameserver
54 2. Configure it to accept dns updates and forward to your master DNS Server
55 3. Configure Designate in openstack
56 4. Create a pool pointing to your nameserver
57
58 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).
59 For OOM, use the DNS on the container host so it can give it to the relevant VM.