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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
..
Copyright 2016 Rackspace Hosting
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
.. _configpools:
==========================
Configuring Multiple Pools
==========================
Administrators can group DNS namespace servers into multiple pools to help
them manage their DNS environments. See :ref:`pools` to learn more about what
pools are and how you can use them.
Configuring Designate to use multiple pools consists of:
#. Defining new pools and loading their definitions into the database.
#. Configuring the pool scheduler with filters that you have created or with
filters provided by Designate.
#. Supplying the required pool information to users to specify when they
create zones.
Defining New Pools
==================
In Designate, you define a new pool in a pool definition file, and then load
the definition into the Designate database by running the ``designate-manage``
command.
#. Add the pool to the pool definition file, by following the required key
value pairs in YAML format that are documented under "Pool Definition File"
in :ref:`pools`.
Here is an example of a pool definition file, ``pools.yaml``, that
configures two different pools. Each pool supports a different usage level,
`gold` and `standard`, and each contains zones that reflect their
respective usage levels.
The `gold` level provides 6 nameservers that users have access to. The
`standard` level provides only 2 nameservers. Both pools have one target
that is written to.
.. code-block:: yaml
---
- name: golden_pool
description: The golden pool!
attributes:
service_tier: gold
ns_records:
- hostname: ns1-gold.example.org
priority: 1
- hostname: ns2-gold.example.org
priority: 2
- hostname: ns3-gold.example.net
priority: 3
- hostname: ns4-gold.example.net
priority: 4
- hostname: ns5-gold.example.net
priority: 5
- hostname: ns6-gold.example.net
priority: 6
nameservers:
- host: ns1-gold.example.net
port: 53
- host: ns2-gold.example.net
port: 53
- host: ns3-gold.example.net
port: 53
- host: ns4-gold.example.net
port: 53
- host: ns5-gold.example.net
port: 53
- host: ns6-gold.example.net
port: 53
targets:
- type: bind9
description: bind9 golden master
masters:
- host: mdns.designate.example.com
port: 5354
options:
host: ns-master-gold.example.org
port: 53
rndc_host: ns-master-gold.example.org
rndc_port: 953
rndc_key_file: /etc/designate.rndc.key
- name: standard_pool
description: The standard pool
attributes:
service_tier: standard
ns_records:
- hostname: ns1-std.example.org
priority: 1
- hostname: ns2-std.example.org
priority: 2
nameservers:
- host: ns1-std.example.net
port: 53
- host: ns2-std.example.net
port: 53
targets:
- type: bind9
description: bind9 golden master
masters:
- host: mdns.designate.example.com
port: 5354
options:
host: ns-master-std.example.org
port: 53
rndc_host: ns-master-std.example.org
rndc_port: 953
rndc_key_file: /etc/designate.rndc.key
#. Load the definitions into the Designate database using the
``designate-manage pool update`` command:
.. code-block:: bash
# Do a dry run
$ designate-manage pool update --file pools.yaml --dry-run
$ designate-manage pool update --file pools.yaml
Designate now has two pools to work with. The next step is to configure the
pool scheduler to use the attributes--provided through filters--when
choosing the pool to store the zone on.
Showing the configured pools
============================
In Designate, you can show the current configured default pool by running the
``designate-manage pool show_config`` command.
You can either see a different pool by adding --pool_id <POOL_ID>, or you can
see all the configured pools by adding ``--all_pools`` or just ``--all``.
Configuring the Pool Scheduler
==============================
When a user creates a zone, the pool scheduler uses filters to assign the zone
to a particular DNS server pool. As the administrator, you choose an ordered
list of filters that runs on each ``zone create`` API request. You configure
the scheduler to use filters that are provided with Designate or create
your own.
#. Do one of the following:
- Write one or more custom filters.
See :ref:`poolsched`.
- Choose one or more of the filters that Designate provides:
- ``attribute``--assigns the zone to the pool whose attribute is
specified.
- ``pool_id_attribute``--if the user is a member of the specified role
assigns the zone to the pool whose ID is specified.
- ``default_pool``--assigns the zone to the default pool specified in the
Designate configuration file.
- ``fallback``--if there are no pools available, assigns the zone to the
default pool.
- ``random``--if multiple pools have been specified, randomly assigns the
zone to a pool.
- ``in_doubt_default_pool``--if none of the specified pools are
available, and the default pool has not been specified, assigns the
zone to the default pool.
#. Add the filters that you want the scheduler to use in the
``service:central`` section of the ``designate.conf`` file. See
:ref:`poolsched` for more information.
Schedule by Pool ID Example
---------------------------
For example, to allow a user to select a pool by specifying an ID or
fallback to using a default, you could use the following configuration:
.. code-block:: ini
[service:central]
default_pool_id = 794ccc2c-d751-44fe-b57f-8894c9f5c842
scheduler_filters = pool_id_attribute, fallback
The pool scheduler applies filters from left to right. If the zone body
doesn't contain an `attributes` object with a `pool_id` set to a valid pool
ID, the fallback filter is then called, returning the default pool as the
scheduled pool for that zone.
Schedule by Tier Example
------------------------
In this tier example, the `attribute` filter is used to select the
correct pool.
.. code-block:: ini
[service:central]
default_pool_id = 794ccc2c-d751-44fe-b57f-8894c9f5c842 # the std pool
scheduler_filters = attribute, fallback
When a user wants to assign a zone to the `gold` pool, the user must provide
the appropriate attribute in the zone.
.. code-block:: http
POST /v2/zones HTTP/1.1
Accept: application/json
Content-Type: application/json
{
"attributes": {
"service_tier": "gold"
},
"email": "user@example.com",
"name": "example.net."
}
In this example, the user defines which pool is scheduled. If the zone should
be scheduled based on the tenant, a custom filter could be written that looks
up the appropriate group and adds the appropriate pool.
|