File: get_started.rst

package info (click to toggle)
designate 1%3A21.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,860 kB
  • sloc: python: 49,608; sh: 1,914; sql: 155; makefile: 83; javascript: 3
file content (37 lines) | stat: -rw-r--r-- 1,368 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
====================
DNS service overview
====================

The DNS service provides DNS Zone and RecordSet management for OpenStack
clouds. The DNS Service includes a REST API, a command-line client, and a
Horizon Dashboard plugin.

The DNS service consists of the following components:

``openstack`` command-line client plugin
  A plugin for the OpenStack Client CLI that communicates with the REST API

``designate-api`` component
  An OpenStack-native REST API that processes API requests by sending
  them to the ``designate-central`` over Remote Procedure Call (RPC).

``designate-central`` component
  Orchestrates the creation, deletion and update of Zones and RecordSets.

``designate-producer`` component
  Orchestrates periodic tasks that are run by designate.

``designate-worker`` component
  Is a generic task runner, that runs both zone create / update and deletes,
  and periodic tasks, from ``designate-producer``

``designate-mdns`` component
  A small DNS Server that is responsible for pushing DNS Zone information to
  the customer facing DNS Servers. Can also pull in DNS information about
  DNS Zones hosted outside of the Designate infrastructure

``Customer Facing DNS Servers``
  Serves DNS requests to end users. They are orchestreated by the
  ``designate-worker``, and the supported list is maintained
  :ref:`here <driver_matrix>`.