- Removed all subdirectories - Renamed compose.yml to <stack>-compose.yml - Updated stack.toml to reference new compose file names - Structure is now flat for easier Komodo sync New structure: stacks/ ├── prometheus.toml ├── prometheus-compose.yml ├── grafana.toml ├── grafana-compose.yml ├── gotify.toml ├── gotify-compose.yml ├── vaultwarden.toml ├── vaultwarden-compose.yml └── node-exporter.toml └── node-exporter-compose.yml
24 lines
405 B
TOML
24 lines
405 B
TOML
[stack]
|
|
name = "Prometheus"
|
|
description = "Prometheus Monitoring & Alerting System"
|
|
version = "1.0.0"
|
|
category = "monitoring"
|
|
author = "nocci"
|
|
|
|
[compose]
|
|
file = "prometheus-compose.yml"
|
|
|
|
[variables]
|
|
# Keine Secrets erforderlich
|
|
|
|
[ports]
|
|
prometheus = "9090"
|
|
|
|
[volumes]
|
|
prometheus_data = "/prometheus"
|
|
|
|
[healthcheck]
|
|
endpoint = "http://localhost:9090/-/healthy"
|
|
interval = "30s"
|
|
timeout = "10s"
|
|
retries = 3
|