/
krepost
/
deckhouse
Обзор
Документация
Войти
/
krepost
/
deckhouse
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/documentation/_includes/network_security_setup.liquid
23 строки
868 B
Ekaterina Matseevska
[docs] Update used network ports in DKP Release Notes 1.71 (#15010)
21 авг 2025, 16:23
Не верифицирован
21 авг 2025, 16:23
2fffbab
Код
Авторство
О чём код?
{% assign lang = page.lang | default: 'en' %} {% for group in site.data.deckhouse-ports.groups %} <h2>{{ group.description[lang] }}</h2> <table class="deckhouse-ports" markdown="0"> <thead> <tr> <th>{{ site.data.i18n.common['port'][page.lang] | capitalize }}</th> <th>{{ site.data.i18n.common['protocol'][page.lang] | capitalize }}</th> <th>{{ site.data.i18n.common['purpose'][page.lang] | capitalize }}</th> </tr> </thead> <tbody> {% for destination in group.destinations %} <tr> <td>{% if destination.ports.size > 0 %}<code>{{ destination.ports }}</code>{% else %}—{% endif %}</td> <td>{{ destination.protocol }}</td> <td class="desc">{{ destination.description[lang] | markdownify }}</td> </tr> {% endfor %} </tbody> </table> {% endfor %}