23 lines
375 B
Markdown
23 lines
375 B
Markdown
# monitoring
|
|
|
|
## namespace
|
|
|
|
``` bash
|
|
kubectl create namespace monitoring
|
|
```
|
|
|
|
## promtail
|
|
|
|
### setup
|
|
|
|
``` bash
|
|
# add repo
|
|
helm repo add grafana https://grafana.github.io/helm-charts
|
|
# Install & Upgrade
|
|
helm upgrade --install promtail grafana/promtail --namespace monitoring \
|
|
--values=./promtail/values.yaml \
|
|
--values=./promtail//values.local.yaml
|
|
```
|
|
|
|
## Continuous Deploy
|