summaryrefslogtreecommitdiff
path: root/f3s/loki/Justfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-12-05 21:57:39 +0200
committerPaul Buetow <paul@buetow.org>2025-12-05 21:57:39 +0200
commit608905f529c1341cabb6c7f86436163379aa1284 (patch)
tree0eee7d4565bd819a9add86af672f5e6e6b89c681 /f3s/loki/Justfile
parentb063b9f123ca51457d675acb0ca4db7b40701ee6 (diff)
Add Grafana Loki with Alloy for log collection
Diffstat (limited to 'f3s/loki/Justfile')
-rw-r--r--f3s/loki/Justfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/f3s/loki/Justfile b/f3s/loki/Justfile
index 6162880..395d5d6 100644
--- a/f3s/loki/Justfile
+++ b/f3s/loki/Justfile
@@ -3,10 +3,13 @@ install:
helm repo update
kubectl apply -f persistent-volumes.yaml
helm install loki grafana/loki --namespace monitoring -f values.yaml
+ helm install alloy grafana/alloy --namespace monitoring -f alloy-values.yaml
uninstall:
+ helm uninstall alloy --namespace monitoring
helm uninstall loki --namespace monitoring
kubectl delete -f persistent-volumes.yaml
upgrade:
helm upgrade loki grafana/loki --namespace monitoring -f values.yaml
+ helm upgrade alloy grafana/alloy --namespace monitoring -f alloy-values.yaml