feat: Add stack.toml in each stack directory

Each stack now has a stack.toml that defines the stack for Resource Sync:

[[stacks]]
name = "..."
description = "..."
compose_path = "compose.yml"

This tells Komodo what each stack is when using Resource Sync.
This commit is contained in:
nocci 2026-03-09 20:05:50 +00:00
parent b37541bb7a
commit 606a3ed72c
5 changed files with 20 additions and 0 deletions

4
stacks/gotify/stack.toml Normal file
View file

@ -0,0 +1,4 @@
[[stacks]]
name = "gotify"
description = "Push-Benachrichtigungen"
compose_path = "compose.yml"

View file

@ -0,0 +1,4 @@
[[stacks]]
name = "grafana"
description = "Dashboards & Visualisierung"
compose_path = "compose.yml"

View file

@ -0,0 +1,4 @@
[[stacks]]
name = "node-exporter"
description = "System-Metriken"
compose_path = "compose.yml"

View file

@ -0,0 +1,4 @@
[[stacks]]
name = "prometheus"
description = "Monitoring & Alerting"
compose_path = "compose.yml"

View file

@ -0,0 +1,4 @@
[[stacks]]
name = "vaultwarden"
description = "Password Manager"
compose_path = "compose.yml"