e9e28a5ca8
- Created model files for Qwen3.5 with different context lengths. - Added a new Ansible host variable file for CI server configuration. - Updated GPU server host variables to include Ollama models and model files. - Enhanced playbooks for Podman to manage Ollama models, including copying model files and checking existing models. - Introduced a new playbook for setting up Qwen3.6 with specific configurations. - Updated Windows SSH tasks to improve security and configuration management. - Added a Python utility to parse Ollama model names from command output. - Modified Terraform configurations to include new DNS entries and proxy settings. - Improved Nginx proxy configurations with timeout settings.
32 lines
597 B
YAML
32 lines
597 B
YAML
hostname: ci-01.lab.alexpires.me
|
|
ansible_user: "{{ lookup('env', 'ANSIBLE_USER') }}"
|
|
ansible_password: "{{ lookup('env', 'WIN_CI_01_PASSWORD') }}"
|
|
ansible_connection: winrm
|
|
ansible_winrm_transport: basic
|
|
ansible_winrm_server_cert_validation: ignore
|
|
|
|
ssh_users:
|
|
- name: "{{ ansible_user }}"
|
|
admin: true
|
|
keys:
|
|
- "{{ lookup('file', 'keys/ansible_user.pub') }}"
|
|
|
|
grafana_prometheus_sources:
|
|
- 10.19.4.136
|
|
|
|
windows_exporter_collectors:
|
|
- cache
|
|
- cpu
|
|
- cpu_info
|
|
- gpu
|
|
- diskdrive
|
|
- logical_disk
|
|
- memory
|
|
- net
|
|
- os
|
|
- process
|
|
- service
|
|
- tcp
|
|
- time
|
|
- update
|