13 lines
317 B
Markdown
13 lines
317 B
Markdown
# Promtail
|
|
|
|
``` bash
|
|
kubectl get namespace monitoring || kubectl create namespace monitoring
|
|
|
|
# add repo
|
|
helm repo add grafana https://grafana.github.io/helm-charts
|
|
# Install & Upgrade
|
|
helm upgrade --install promtail grafana/promtail --namespace monitoring \
|
|
--values=./values.yaml \
|
|
--values=./values.local.yaml
|
|
```
|