Обновление проекта

This commit is contained in:
Сергей Антропов
2025-10-28 19:19:49 +03:00
parent 0b4efd9ca1
commit f6d1182193
11 changed files with 257 additions and 31 deletions

View File

@@ -6,8 +6,30 @@
- name: Развертывание всех ролей
hosts: all
become: true
roles:
- devops
- python
- docker
tasks:
# Сброс цветовых кодов ANSI для корректного отображения
- name: Reset ANSI color codes
debug:
msg: "\033[0m"
changed_when: false
tags:
- color-reset
#- name: Установка роли devops
# hosts: all
# become: true
# roles:
# - devops
- name: Установка роли python
hosts: all
become: true
roles:
- python
#- name: Установка роли docker
# hosts: all
# become: true
# roles:
# - docker