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: "Radarr"
|
|
description: "Automatikus film letöltő és rendszerező"
|
|
category: "media-automation"
|
|
subdomain: "radarr"
|
|
slug: "radarr"
|
|
|
|
# --- 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: "radarr"
|
|
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 film letöltő és rendszerező"
|
|
docs_url: "https://wiki.servarr.com/radarr"
|
|
|
|
use_cases:
|
|
- 'Filmek automatikus letöltése és rendszerezése'
|
|
- 'Kívánságlista - filmek automatikusan a könyvtáradba kerülnek'
|
|
- 'Minőség kezelés és automatikus frissítés jobb minőségre'
|
|
- 'Integráció Jellyfin/Plex és letöltő kliensekkel'
|
|
- 'Metaadat és borítókép automatikus letöltés'
|
|
|
|
first_steps:
|
|
- 'Nyisd meg a radarr.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/movies)'
|
|
- 'Keress rá egy filmre é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: 7878
|
|
path: "/ping"
|
|
expect:
|
|
status: 200
|