mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 09:04:42 +02:00
feat: initial commit — Ansible roles storage-01/gpu-01 opérationnels
This commit is contained in:
commit
b3fce8af5d
70 changed files with 2688 additions and 0 deletions
14
ansible/host_vars/gpu-01/vars.yml
Normal file
14
ansible/host_vars/gpu-01/vars.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
ansible_host: 192.168.10.20
|
||||
|
||||
# llama-server — modèle servi au démarrage
|
||||
llama_model_path: "/mnt/models/bartowski/Qwen3-8B-GGUF/Qwen3-8B-Q4_K_M.gguf"
|
||||
llama_model_alias: "qwen3-8b"
|
||||
llama_ctx_size: 32768
|
||||
|
||||
# Montages NFS (surcharge les defaults du rôle nfs_client)
|
||||
nfs_client_mounts:
|
||||
- local_path: /mnt/nfs
|
||||
remote_export: /srv/data/nfs/k8s
|
||||
- local_path: /mnt/models
|
||||
remote_export: /srv/data/models
|
||||
21
ansible/host_vars/storage-01/vars.yml
Normal file
21
ansible/host_vars/storage-01/vars.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
ansible_host: 192.168.1.200
|
||||
|
||||
# RAID5
|
||||
raid_uuid: "3add8360-fa01-47eb-8aa1-0e84bacbbc15"
|
||||
raid_mount: /srv/data
|
||||
|
||||
# NFS exports
|
||||
nfs_exports:
|
||||
- path: /srv/data/nfs/k8s
|
||||
network: "{{ cluster_network }}"
|
||||
options: "rw,sync,no_subtree_check,no_root_squash"
|
||||
- path: /srv/data/models
|
||||
network: "{{ cluster_network }}"
|
||||
options: "rw,sync,no_subtree_check,no_root_squash"
|
||||
|
||||
# Chemins services (sous le RAID)
|
||||
hermes_data_dir: /srv/data/hermes
|
||||
postgres_data_dir: /srv/data/postgres
|
||||
qdrant_data_dir: /srv/data/qdrant
|
||||
minio_data_dir: /srv/data/minio
|
||||
Loading…
Add table
Add a link
Reference in a new issue