mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-05-06 04:14:43 +00:00
Add the full media automation stack (sonarr, radarr, prowlarr, lidarr, readarr, whisparr), media servers (jellyfin, plex), and supporting services (transmission, samba, ollama, promtail, cloudflared, vsftpd) to the repo as a media_stack Ansible role. Includes: - Custom systemd unit files for non-package-managed services - Config files for promtail, samba, transmission, vsftpd - Cron jobs for movie-rename-fix, sonarr/radarr midnight restarts - Updated deploy.yml to wire the role into london-b's stage - Updated london-b docs with full service inventory Backup script (backup.sh) already covered by the existing backup role. Node/systemd exporters already covered by existing monitoring roles. Closes PESO-92
31 lines
642 B
YAML
31 lines
642 B
YAML
server:
|
|
http_listen_port: 9080
|
|
grpc_listen_port: 0
|
|
|
|
positions:
|
|
filename: /tmp/positions.yaml
|
|
|
|
clients:
|
|
- url: http://192.168.1.254:3100/loki/api/v1/push
|
|
|
|
scrape_configs:
|
|
- job_name: london-b
|
|
static_configs:
|
|
- targets:
|
|
- localhost
|
|
labels:
|
|
job: varlogs
|
|
instance: london-b
|
|
__path__: /var/log/*log
|
|
- targets:
|
|
- localhost
|
|
labels:
|
|
job: plex
|
|
instance: london-b
|
|
__path__: /var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Logs/*log
|
|
- targets:
|
|
- localhost
|
|
labels:
|
|
job: jellyfin
|
|
instance: london-b
|
|
__path__: /var/log/jellyfin/*log
|