unip-controller/controller/src/basic_resources/jinja.py
2025-04-15 20:56:15 +03:00

14 lines
585 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ============================================================
# Система: Единая библиотека, Центр ИИ НИУ ВШЭ
# Модуль: Управления базовыми объектами Kubernetes
# Авторы: Полежаев В.А., Хританков А.С.
# Дата создания: 2024 г.
# ============================================================
from jinja2 import Environment, FileSystemLoader
basic_jinja_env = Environment(
loader=FileSystemLoader('templates/basic-resources'),
lstrip_blocks=True,
trim_blocks=True
)