From 606a3ed72cd233f457983a56559e5562aa7ab2c2 Mon Sep 17 00:00:00 2001 From: nocci Date: Mon, 9 Mar 2026 20:05:50 +0000 Subject: [PATCH] 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. --- stacks/gotify/stack.toml | 4 ++++ stacks/grafana/stack.toml | 4 ++++ stacks/node-exporter/stack.toml | 4 ++++ stacks/prometheus/stack.toml | 4 ++++ stacks/vaultwarden/stack.toml | 4 ++++ 5 files changed, 20 insertions(+) create mode 100644 stacks/gotify/stack.toml create mode 100644 stacks/grafana/stack.toml create mode 100644 stacks/node-exporter/stack.toml create mode 100644 stacks/prometheus/stack.toml create mode 100644 stacks/vaultwarden/stack.toml diff --git a/stacks/gotify/stack.toml b/stacks/gotify/stack.toml new file mode 100644 index 0000000..8b9fc26 --- /dev/null +++ b/stacks/gotify/stack.toml @@ -0,0 +1,4 @@ +[[stacks]] +name = "gotify" +description = "Push-Benachrichtigungen" +compose_path = "compose.yml" diff --git a/stacks/grafana/stack.toml b/stacks/grafana/stack.toml new file mode 100644 index 0000000..259e04d --- /dev/null +++ b/stacks/grafana/stack.toml @@ -0,0 +1,4 @@ +[[stacks]] +name = "grafana" +description = "Dashboards & Visualisierung" +compose_path = "compose.yml" diff --git a/stacks/node-exporter/stack.toml b/stacks/node-exporter/stack.toml new file mode 100644 index 0000000..ce0ecf6 --- /dev/null +++ b/stacks/node-exporter/stack.toml @@ -0,0 +1,4 @@ +[[stacks]] +name = "node-exporter" +description = "System-Metriken" +compose_path = "compose.yml" diff --git a/stacks/prometheus/stack.toml b/stacks/prometheus/stack.toml new file mode 100644 index 0000000..ec99bb6 --- /dev/null +++ b/stacks/prometheus/stack.toml @@ -0,0 +1,4 @@ +[[stacks]] +name = "prometheus" +description = "Monitoring & Alerting" +compose_path = "compose.yml" diff --git a/stacks/vaultwarden/stack.toml b/stacks/vaultwarden/stack.toml new file mode 100644 index 0000000..9c56350 --- /dev/null +++ b/stacks/vaultwarden/stack.toml @@ -0,0 +1,4 @@ +[[stacks]] +name = "vaultwarden" +description = "Password Manager" +compose_path = "compose.yml"