a04882e296
Each app template now declares a healthcheck: section in .felhom.yml with appropriate probe type (http, api, or tcp) and endpoint based on the app's known health endpoints. The controller uses these to verify services are actually responding, not just that containers are running. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
75 lines
2.2 KiB
YAML
75 lines
2.2 KiB
YAML
# =============================================================================
|
|
# .felhom.yml - App metadata for felhom-controller
|
|
# =============================================================================
|
|
|
|
# --- Display info (shown on dashboard) ---
|
|
display_name: "Sonarr"
|
|
description: "Automatikus sorozat letöltő és rendszerező"
|
|
category: "media-automation"
|
|
subdomain: "sonarr"
|
|
slug: "sonarr"
|
|
|
|
# --- Resource hints (displayed on deploy screen) ---
|
|
resources:
|
|
mem_request: "150M"
|
|
mem_limit: "512M"
|
|
pi_compatible: true
|
|
needs_hdd: true
|
|
|
|
# --- Deploy fields (first deployment only) ---
|
|
deploy_fields:
|
|
- env_var: DOMAIN
|
|
label: "Domain"
|
|
type: domain
|
|
description: "A szerver domain neve"
|
|
locked_after_deploy: true
|
|
|
|
- env_var: SUBDOMAIN
|
|
label: "Aldomain"
|
|
type: subdomain
|
|
default: "sonarr"
|
|
required: true
|
|
locked_after_deploy: true
|
|
description: "Az alkalmazás aldomainje"
|
|
|
|
- env_var: HDD_PATH
|
|
label: "Médiatár útvonal"
|
|
type: path
|
|
required: true
|
|
placeholder: "/mnt/hdd_1"
|
|
description: "A külső merevlemez elérési útja"
|
|
locked_after_deploy: true
|
|
|
|
# --- App info (info page content) ---
|
|
app_info:
|
|
tagline: "Automatikus sorozat letöltő és rendszerező"
|
|
docs_url: "https://wiki.servarr.com/sonarr"
|
|
|
|
use_cases:
|
|
- 'Sorozatok automatikus letöltése és rendszerezése'
|
|
- 'Kívánságlista kezelés - új epizódok automatikus letöltése'
|
|
- 'Minőség kezelés (480p-tól 4K-ig, automatikus frissítés)'
|
|
- 'Integráció Jellyfin/Plex és letöltő kliensekkel'
|
|
- 'Felirat automatikus letöltés'
|
|
|
|
first_steps:
|
|
- 'Nyisd meg a sonarr.DOMAIN címet a böngészőben'
|
|
- 'Állíts be egy letöltő klienst (pl. qBittorrent)'
|
|
- 'Add hozzá az indexereket (vagy használj Prowlarr-t)'
|
|
- 'Állítsd be a gyökérmappát (/media/shows)'
|
|
- 'Keress rá egy sorozatra és add hozzá a listádhoz'
|
|
|
|
prerequisites:
|
|
- 'Külső HDD szükséges a médiafájlok tárolásához'
|
|
- 'Letöltő kliens szükséges (pl. qBittorrent - külön telepítendő)'
|
|
- 'Indexer hozzáférés szükséges a kereséshez'
|
|
|
|
# --- Controller-side health probe ---
|
|
healthcheck:
|
|
checks:
|
|
- type: api
|
|
port: 8989
|
|
path: "/ping"
|
|
expect:
|
|
status: 200
|