diff options
-rw-r--r-- | designate/common/policies/blacklist.py | 2 | ||||
-rw-r--r-- | designate/common/policies/record.py | 2 | ||||
-rw-r--r-- | designate/locale/ru/LC_MESSAGES/designate.po | 105 | ||||
-rw-r--r-- | doc/source/user/importexport.rst | 294 | ||||
-rw-r--r-- | doc/source/user/index.rst | 1 | ||||
-rw-r--r-- | releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po | 5 |
6 files changed, 403 insertions, 6 deletions
diff --git a/designate/common/policies/blacklist.py b/designate/common/policies/blacklist.py index bf1b28b3..fe739236 100644 --- a/designate/common/policies/blacklist.py +++ b/designate/common/policies/blacklist.py @@ -130,7 +130,7 @@ rules = [ 'method': 'PATCH' } ], - deprecated_rule=deprecated_get_blacklist + deprecated_rule=deprecated_update_blacklist ), policy.DocumentedRuleDefault( name="delete_blacklist", diff --git a/designate/common/policies/record.py b/designate/common/policies/record.py index d90ba273..61efe4f9 100644 --- a/designate/common/policies/record.py +++ b/designate/common/policies/record.py @@ -57,7 +57,7 @@ rules = [ name="count_records", check_str=base.SYSTEM_OR_PROJECT_READER, scope_types=['system', 'project'], - deprecated_rule=deprecated_find_records + deprecated_rule=deprecated_count_records ) ] diff --git a/designate/locale/ru/LC_MESSAGES/designate.po b/designate/locale/ru/LC_MESSAGES/designate.po new file mode 100644 index 00000000..44cb7072 --- /dev/null +++ b/designate/locale/ru/LC_MESSAGES/designate.po @@ -0,0 +1,105 @@ +# Lucas Palm <lapalm@us.ibm.com>, 2015. #zanata +# Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata +# Roman Gorshunov <roman.gorshunov@att.com>, 2021. #zanata +msgid "" +msgstr "" +"Project-Id-Version: designate VERSION\n" +"Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n" +"POT-Creation-Date: 2021-08-31 00:59+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"PO-Revision-Date: 2021-09-06 04:06+0000\n" +"Last-Translator: Roman Gorshunov <roman.gorshunov@att.com>\n" +"Language-Team: Russian\n" +"Language: ru\n" +"X-Generator: Zanata 4.3.3\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#, python-format +msgid "%s is not a valid project ID." +msgstr "%s не является допустимым ID проекта." + +#, python-format +msgid "<%(type)s count:'%(count)s' object:'%(list_type)s'>" +msgstr "<%(type)s в количестве:'%(count)s' объект:'%(list_type)s'>" + +msgid "An unknown exception occurred." +msgstr "Обнаружено неизвестное исключение." + +#, python-format +msgid "Cannot create '%(objtype)s' object(s): %(content)s [code %(code)s]" +msgstr "" +"Невозможно создать объект(-ы) '%(objtype)s': %(content)s [код %(code)s]" + +#, python-format +msgid "Cannot delete object with ref %(ref)s: %(content)s [code %(code)s]" +msgstr "" +"Невозможно удалить объект с ссылкой %(ref)s: %(content)s [код %(code)s]" + +#, python-format +msgid "Cannot search '%(objtype)s' object(s): %(content)s [code %(code)s]" +msgstr "Невозможно найти объект(-ы) '%(objtype)s': %(content)s [код %(code)s]" + +#, python-format +msgid "Cannot update object with ref %(ref)s: %(content)s [code %(code)s]" +msgstr "" +"Невозможно обновить объект с ссылкой %(ref)s: %(content)s [код %(code)s]" + +msgid "Duplicate service status" +msgstr "Статус дублированного сервиса" + +msgid "Duplicated services found in service_statuses table." +msgstr "В таблице service_statuses найдены дубликаты сервисов." + +#, python-format +msgid "" +"Error occurred during function's '%(func_name)s' call: ref %(ref)s: " +"%(content)s [code %(code)s]" +msgstr "" +"Произошла ошибка при вызове функции '%(func_name)s': ссылка %(ref)s: " +"%(content)s [код %(code)s]" + +#, python-format +msgid "" +"Infoblox %(obj_type)s will not be deleted because it cannot be found: " +"%(payload)s" +msgstr "" +"Infoblox %(obj_type)s не будут удалены, так как они не были найдены: " +"%(payload)s" + +#, python-format +msgid "" +"Infoblox %(obj_type)s will not be updated because it cannot be found: " +"%(payload)s" +msgstr "" +"Infoblox %(obj_type)s не будут обновлены, так как они не были найдены: " +"%(payload)s" + +#, python-format +msgid "Infoblox backend is misconfigured: '%(option)s' must be defined." +msgstr "" +"Бэкенд Infoblox настроен некорректно: должны быть определены '%(option)s'." + +#, python-format +msgid "Infoblox object cannot be parsed from dict: %(data)s" +msgstr "Не удалось разобрать объект Infoblox из словаря: %(data)s" + +msgid "KeystoneV3 endpoint not found" +msgstr "Не найдена конечная точка KeystoneV3" + +msgid "No Infoblox Member is available." +msgstr "Нет доступных членов кластера Infoblox." + +msgid "Policy File JSON to YAML Migration" +msgstr "Миграция файла политики JSON в YAML" + +msgid "The service is unavailable" +msgstr "Служба недоступна" + +msgid "Unknown sort direction, must be 'desc' or 'asc'" +msgstr "Неизвестное направление сортировки, должно быть 'desc' или 'asc'" + +msgid "serve() can only be called once" +msgstr "serve() может быть вызван только один раз" diff --git a/doc/source/user/importexport.rst b/doc/source/user/importexport.rst new file mode 100644 index 00000000..a93c2f2c --- /dev/null +++ b/doc/source/user/importexport.rst @@ -0,0 +1,294 @@ +.. + Copyright 2021 Red Hat + + 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. + +.. _importexport: + +====================== +Zone Import and Export +====================== + +Overview +======== + +Zones can be imported into and serialised out of Designate using the zone +import and export APIs. Using the `zone file format`_ along with these APIs +you can both create zones and recordsets in batches and export zone data +from Designate easily. + +Exporting Zones +=============== + +You can export a zone file from Designate using the `zone export create` +subcommand on an existing zone, and subsequently access the exported +zone file using `zone export showfile`. + +For example, use `openstack recordset list` to view the records for +a zone you'd like to export: + +.. code-block:: console + + $ openstack recordset list example.org. + +--------------------------------------+------------------+------+---------------------------------------------------------------------+--------+--------+ + | id | name | type | records | status | action | + +--------------------------------------+------------------+------+---------------------------------------------------------------------+--------+--------+ + | b4dfeb36-c4ae-4399-9493-6e6997099356 | example.org. | NS | ns1.example.org. | ACTIVE | NONE | + | e9e3b31f-8aef-465f-9380-e3380191f8bd | example.org. | SOA | ns1.example.org. admin.example.org. 1624414033 3583 600 86400 3600 | ACTIVE | NONE | + | 09407eaa-1fac-4257-b9e1-11d693bc1eae | www.example.org. | A | 192.0.2.2 | ACTIVE | NONE | + | | | | 192.0.2.1 | | | + +--------------------------------------+------------------+------+---------------------------------------------------------------------+--------+--------+ + +Using the `openstack zone export create` command, export `example.org.`: + +.. code-block:: console + + $ openstack zone export create example.org. + +------------+--------------------------------------+ + | Field | Value | + +------------+--------------------------------------+ + | created_at | 2021-06-23T02:01:30.000000 | + | id | e75aef2c-b562-4cd9-a426-4a73f6cb82be | + | location | None | + | message | None | + | project_id | cf5a8f5cc5834d2dacd1d54cd0a354b7 | + | status | PENDING | + | updated_at | None | + | version | 1 | + | zone_id | d8f81db6-937b-4388-bfb3-ba620e6c09fb | + +------------+--------------------------------------+ + +You can access the contents of the zone file using `zone export showfile`. +Using the `-f value` parameter will print the contents of the zone file without +any tabulation, which can be useful if you want to modify the exported zone +file locally and then import it back into Designate to update the zone. + +.. code-block:: console + + $ openstack zone export showfile e75aef2c-b562-4cd9-a426-4a73f6cb82be -f value + $ORIGIN example.org. + $TTL 3600 + + example.org. IN NS ns1.example.org. + example.org. IN SOA ns1.example.org. admin.example.org. 1624414033 3583 600 86400 3600 + + www.example.org. IN A 192.0.2.2 + www.example.org. IN A 192.0.2.1 + +By default, the zone export file will be created on demand as it is accessed +and as a result the contents of the zone export file will be updated as you +add new recordsets to the zone: + +.. code-block:: console + + $ openstack recordset create example.org. test --type A --record 192.0.2.100 + +-------------+--------------------------------------+ + | Field | Value | + +-------------+--------------------------------------+ + | action | CREATE | + | created_at | 2021-06-23T02:35:06.000000 | + | description | None | + | id | aa27ccd8-77b1-41df-a3ed-2129259b334a | + | name | test.example.org. | + | project_id | cf5a8f5cc5834d2dacd1d54cd0a354b7 | + | records | 192.0.2.100 | + | status | PENDING | + | ttl | None | + | type | A | + | updated_at | None | + | version | 1 | + | zone_id | d8f81db6-937b-4388-bfb3-ba620e6c09fb | + | zone_name | example.org. | + +-------------+--------------------------------------+ + $ openstack zone export showfile e75aef2c-b562-4cd9-a426-4a73f6cb82be -f value + $ORIGIN example.org. + $TTL 3600 + + example.org. IN NS ns1.example.org. + example.org. IN SOA ns1.example.org. admin.example.org. 1624415706 3583 600 86400 3600 + www.example.org. IN A 192.0.2.2 + www.example.org. IN A 192.0.2.1 + test.example.org. IN A 192.0.2.100 + +Zone Export Internals +--------------------- + +The zone export resource created does not contain the zone file data, instead +it holds the location of that data as Designate can be configured by the +operator to store zone exports in external services. By default, the location +of the zone export file is internal to Designate and uses the Designate +protocol `designate://`. In this case, zone file data will be generated on +demand when `zone export showfile` is used. You can view the location URI of +the zone file data using `zone export show`: + +.. code-block:: console + + $ openstack zone export show e75aef2c-b562-4cd9-a426-4a73f6cb82be + +------------+--------------------------------------------------------------------------------+ + | Field | Value | + +------------+--------------------------------------------------------------------------------+ + | created_at | 2021-06-23T02:01:30.000000 | + | id | e75aef2c-b562-4cd9-a426-4a73f6cb82be | + | location | designate://v2/zones/tasks/exports/e75aef2c-b562-4cd9-a426-4a73f6cb82be/export | + | message | None | + | project_id | cf5a8f5cc5834d2dacd1d54cd0a354b7 | + | status | COMPLETE | + | updated_at | 2021-06-23T02:01:30.000000 | + | version | 2 | + | zone_id | d8f81db6-937b-4388-bfb3-ba620e6c09fb | + +------------+--------------------------------------------------------------------------------+ + +Zone Import +=========== + +You can import a zone and all of its recordsets by putting them all into a +file that uses the `zone file format`_ and calling +`openstack zone import create`: + +.. code-block:: console + + $ cat zone_file + $ORIGIN example.org. + $TTL 3600 + + example.org. IN NS ns1.example.org. + example.org. IN SOA ns1.example.org. admin.example.org. 1624415706 3583 600 86400 3600 + www.example.org. IN A 192.0.2.2 + www.example.org. IN A 192.0.2.1 + test.example.org. IN A 192.0.2.100 + + $ openstack zone import create zone_file + +------------+--------------------------------------+ + | Field | Value | + +------------+--------------------------------------+ + | created_at | 2021-06-24T03:39:58.000000 | + | id | 6140580d-c72a-4f07-82ab-908da979a9a3 | + | message | None | + | project_id | cf5a8f5cc5834d2dacd1d54cd0a354b7 | + | status | PENDING | + | updated_at | None | + | version | 1 | + | zone_id | None | + +------------+--------------------------------------+ + +You can now view the zone in Designate: + +.. code-block:: console + + $ openstack recordset list example.org. + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + | id | name | type | records | status | action | + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + | 3d9e96c2-da27-4c5b-9b2b-c1b44a58c1e5 | www.example.org. | A | 192.0.2.2 | ACTIVE | NONE | + | | | | 192.0.2.1 | | | + | 541bac15-18da-411f-a8e5-8ccecb65ae1f | example.org. | SOA | ns1.example.org. admin.example.org. 1624415706 3541 600 86400 3600 | ACTIVE | NONE | + | a643b088-6052-49c0-81f7-6ade6682d9a3 | example.org. | NS | ns1.example.org. | ACTIVE | NONE | + | f97274f1-e062-4f59-8ec0-11bccd830547 | test.example.org. | A | 192.0.2.100 | ACTIVE | NONE | + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + +You cannot use zone imports to update a zone or create records in a zone that +already exists. Importing a zone that already exists will result in an error +and no records will be created or modified. + +.. code-block:: console + + $ echo "new.example.org. IN A 192.0.2.101" >> zone_file + $ openstack zone import create zone_file + +------------+--------------------------------------+ + | Field | Value | + +------------+--------------------------------------+ + | created_at | 2021-06-24T03:40:28.000000 | + | id | 50516762-23ec-4bf3-a065-530171c5d0fb | + | message | None | + | project_id | cf5a8f5cc5834d2dacd1d54cd0a354b7 | + | status | PENDING | + | updated_at | None | + | version | 1 | + | zone_id | None | + +------------+--------------------------------------+ + $ openstack zone import show 50516762-23ec-4bf3-a065-530171c5d0fb + +------------+--------------------------------------+ + | Field | Value | + +------------+--------------------------------------+ + | created_at | 2021-06-24T03:40:28.000000 | + | id | 50516762-23ec-4bf3-a065-530171c5d0fb | + | message | An undefined error occurred. | + | project_id | cf5a8f5cc5834d2dacd1d54cd0a354b7 | + | status | ERROR | + | updated_at | 2021-06-24T03:40:28.000000 | + | version | 2 | + | zone_id | None | + +------------+--------------------------------------+ + $ openstack recordset list example.org. + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + | id | name | type | records | status | action | + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + | 3d9e96c2-da27-4c5b-9b2b-c1b44a58c1e5 | www.example.org. | A | 192.0.2.2 | ACTIVE | NONE | + | | | | 192.0.2.1 | | | + | 541bac15-18da-411f-a8e5-8ccecb65ae1f | example.org. | SOA | ns1.example.org. admin.example.org. 1624415706 3541 600 86400 3600 | ACTIVE | NONE | + | a643b088-6052-49c0-81f7-6ade6682d9a3 | example.org. | NS | ns1.example.org. | ACTIVE | NONE | + | f97274f1-e062-4f59-8ec0-11bccd830547 | test.example.org. | A | 192.0.2.100 | ACTIVE | NONE | + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + +You must set the zone TTL using a TTL statement in the zone tile. +The SOA record created for the zone will not always match the values in the +zone file as some values are dependent on Designate configuration options: + +- The `MNAME` is set using the zone's assigned pool information. +- The refresh value is set randomly between the ``default_soa_refresh_min`` + and ``default_soa_refresh_max`` configuration values. +- The minimum value is set to the ``soa_default_minimum`` configuration value. + +The NS record for the zone is generated based on the pool the zone has been +assigned. Other NS records are imported without modification. + +For example, the following zone file uses `test.example.org.` as its namserver, +and provides its own values for the zone TTL, refresh, minimum and expire. The +refresh and minimum values will be discarded on import and the nameserver +changed to the pool's nameserver at `ns1.example.org.`: + +.. code-block:: console + + $ cat zone_file + $ORIGIN example.org. + $TTL 3000 + + example.org. IN NS test.example.org. + example.org. IN SOA test.example.org. admin.example.org. 1624415706 9000 500 86000 5000 + www.example.org. IN A 192.0.2.2 + test.example.org. IN NS test.example.org. + $ openstack zone import create zone_file + +------------+--------------------------------------+ + | Field | Value | + +------------+--------------------------------------+ + | created_at | 2021-06-25T07:07:41.000000 | + | id | ccd0af00-aa5f-43e0-a57d-67cfa2f3738e | + | message | None | + | project_id | cf5a8f5cc5834d2dacd1d54cd0a354b7 | + | status | PENDING | + | updated_at | None | + | version | 1 | + | zone_id | None | + +------------+--------------------------------------+ + $ openstack recordset list example.org. + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + | id | name | type | records | status | action | + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + | 35143297-5268-4bc9-80bb-9d2d12c609e0 | example.org. | SOA | ns1.example.org. admin.example.org. 1624415706 3582 500 86000 3600 | ACTIVE | NONE | + | 3532dee3-effc-4aac-b5c4-90b6e2ad20e0 | test.example.org. | NS | test.example.org. | ACTIVE | NONE | + | bef04729-f49e-4920-83b6-2ef9b620fa9d | example.org. | NS | ns1.example.org. | ACTIVE | NONE | + | c290d79a-6583-4666-a6f7-d4b967f67d79 | www.example.org. | A | 192.0.2.2 | ACTIVE | NONE | + +--------------------------------------+-------------------+------+---------------------------------------------------------------------+--------+--------+ + +.. _RFC 1892: https://datatracker.ietf.org/doc/html/rfc1982 +.. _zone file format: https://en.wikipedia.org/wiki/Zone_file diff --git a/doc/source/user/index.rst b/doc/source/user/index.rst index 507d0b82..ab6e214c 100644 --- a/doc/source/user/index.rst +++ b/doc/source/user/index.rst @@ -11,6 +11,7 @@ Contents: :maxdepth: 2 manage-zones + importexport manage-recordsets rest manage-ptr-records diff --git a/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po b/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po index 73d15d58..9e9994aa 100644 --- a/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po +++ b/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Designate Release Notes\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-03-26 20:30+0000\n" +"POT-Creation-Date: 2021-08-31 00:58+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -60,9 +60,6 @@ msgstr "8.0.0" msgid "8.0.1" msgstr "8.0.1" -msgid "8.0.1-4" -msgstr "8.0.1-4" - msgid "9.0.0" msgstr "9.0.0" |