Join our biggest community event of the year—get a first look at Grafana 12, plus a science fair and sessions on Prometheus, OpenTelemetry, and more. Save 20% with 3+ or 10% when you bring a friend.
Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
And the chart repository can be updated by running:
bash
helm repo update
Create the configuration file values.yaml. The example below illustrates a connection to the locally deployed loki server:
yaml
config:# publish data to lokiclients:-url: http://loki-gateway/loki/api/v1/push
tenant_id:1
Finally, Promtail can be deployed with:
bash
# The default helm configuration deploys promtail as a daemonSet (recommended)
helm upgrade --values values.yaml --install promtail grafana/promtail
Install as Kubernetes daemonSet (recommended)
A DaemonSet will deploy Promtail on every node within a Kubernetes cluster.
The DaemonSet deployment works well at collecting the logs of all containers within a
cluster. It’s the best solution for a single-tenant model. Replace {YOUR_LOKI_ENDPOINT} with your Loki endpoint.