diff options
| author | Paul Buetow <paul@buetow.org> | 2025-12-05 21:57:39 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-12-05 21:57:39 +0200 |
| commit | 608905f529c1341cabb6c7f86436163379aa1284 (patch) | |
| tree | 0eee7d4565bd819a9add86af672f5e6e6b89c681 /f3s/loki/Justfile | |
| parent | b063b9f123ca51457d675acb0ca4db7b40701ee6 (diff) | |
Add Grafana Loki with Alloy for log collection
Diffstat (limited to 'f3s/loki/Justfile')
| -rw-r--r-- | f3s/loki/Justfile | 3 |
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 |
