安装

更新时间:2025年8月2日 05:18 浏览:923

官方 helm 安装说明

https://grafana.com/docs/loki/latest/setup/install/helm/

helm 仓库源码

https://github.com/grafana/helm-charts

 

 

添加 grefana 仓库

helm repo add grafana https://grafana.github.io/helm-charts
helm repo update

 

创建 values.yaml 文件

values.yaml 内容:

loki:
  storage:
    bucketNames:
      chunks: chunks
      ruler: ruler
      admin: admin
    type: s3
    s3:
      endpoint: <endpoint>
      region: <AWS region>
      secretAccessKey: <AWS secret access key>
      accessKeyId: <AWS access key ID>
      s3ForcePathStyle: false
      insecure: false

 

安装 loki

俣用上一步创建的 values.yaml 作为参数,安装 loki

helm install --values values.yaml loki grafana/loki

更新 loki

helm upgrade --values values.yaml loki grafana/loki

 

卸载

helm uninstall loki --namespace=loki

 

 

 

导航