feat: 1) ListGroups返回组内主机详细信息 2) 前端刷新间隔改为5分钟 3) 命令执行和Playbook页面主机组支持展开显示组内主机

This commit is contained in:
Hermes Agent
2026-05-13 17:57:41 +08:00
commit 9c1f44e91a
20 changed files with 4062 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# Ansible Deploy 配置文件
# Ansible安装路径
ansible_path: /usr/bin/ansible
# 资产清单目录
inventory_dir: /root/ansible-deploy/inventory
# Playbook目录
playbook_dir: /root/ansible-deploy/playbooks
# 日志目录
log_dir: /root/ansible-deploy/logs
# SSH连接超时时间(秒)
ssh_timeout: 30
# 最大并发数
max_parallelism: 10
# 输出格式 (json, yaml, plain)
callback_plugin: json
# SSH连接选项
ssh_options:
strict_host_key_checking: no
user_known_hosts_file: /dev/null
connect_timeout: 10
password_authentication: yes
key_authentication: yes