blob: 395d5d65aa5c02f454c83aefea9ef8a19a32b146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
install:
helm repo add grafana https://grafana.github.io/helm-charts || true
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
|