**Пожалуйста, вручную удалите из DNS A и AAAA-записи некоторых хостов сценария.**
Сервис для создания заявок на редактирование DNS-зон: https://dns.tt.yandex-team.ru , руководство: https://wiki.yandex-team.ru/traffic/dnsmgr/
<{Список FQDN для ввода в форму "FQDN templates" на сайте https://dns.tt.yandex-team.ru/ :
%%
{%- for zone in zones_with_dns_api_error|default([]) + zones_not_managed_by_walle|default([]) %}
{% for host in zone.hosts|sort %}{{ host }}{{ "\n" if not loop.last else "" }}{% endfor %}
{% endfor -%}
%%
}>
{% if zones_not_managed_by_walle %}
Зоны, записи в которых Wall-e не имеет прав изменить:
{% for zone in zones_not_managed_by_walle %}
Зона: {{ zone.name }}
Ответственные: {% for owner in zone.owners %}@{{owner.name}}{{ " " if not loop.last else "" }}{% endfor %}
<{Хосты:
%%
{% for host in zone.hosts|sort %}{{ host }}{{ "\n" if not loop.last else "" }}{% endfor %}
%%
}>
{% endfor %}
{% endif %}
{% if zones_with_dns_api_error %}
Зоны, для которых DNS API выдает ошибку:
{% for zone in zones_with_dns_api_error %}
Зона: {{ zone.name }}
<{Ошибка:
{{ zone.error }}
}>
<{Хосты:
%%
{% for host in zone.hosts|sort %}{{ host }}{{ "\n" if not loop.last else "" }}{% endfor %}
%%
}>
{% endfor %}
{% endif %}
<{English version of this text
**Please manually remove A and AAAA DNS-records of several scenario hosts.**
Service to create changes requests in DNS zones: https://dns.tt.yandex-team.ru , manual: https://wiki.yandex-team.ru/traffic/dnsmgr/
<{List of FQDNs to put into "FQDN templates" on https://dns.tt.yandex-team.ru/ :
%%
{%- for zone in zones_with_dns_api_error|default([]) + zones_not_managed_by_walle|default([]) %}
{% for host in zone.hosts|sort %}{{ host }}{{ "\n" if not loop.last else "" }}{% endfor %}
{% endfor -%}
%%
}>
{% if zones_not_managed_by_walle %}
Zones which Wall-e has no permissions to modify:
{% for zone in zones_not_managed_by_walle %}
Zone: {{ zone.name }}
Responsibles: {% for owner in zone.owners %}@{{owner.name}}{{ " " if not loop.last else "" }}{% endfor %}
<{Hosts:
%%
{% for host in zone.hosts|sort %}{{ host }}{{ "\n" if not loop.last else "" }}{% endfor %}
%%
}>
{% endfor %}
{% endif %}
{% if zones_with_dns_api_error %}
Zones, which result in DNS API error:
{% for zone in zones_with_dns_api_error %}
Zone: {{ zone.name }}
<{Error:
{{ zone.error }}
}>
<{Hosts:
%%
{% for host in zone.hosts|sort %}{{ host }}{{ "\n" if not loop.last else "" }}{% endfor %}
%%
}>
{% endfor %}
{% endif %}
}>

