1

我通过 values.yaml 提供 smtp 配置,但 grafana 无法采用此设置

通过 values.yaml 提供 smtp 配置


{ 
"grafana.ini":{ 
     "smtp": {
     "enabled": true, 
     "host" : "smtp.mailtrap.io:25", 
     "user" : "username", 
     "password" : "password" 
             } 
              } 
}

在 cmd 下使用来安装图表

helm install stable/prometheus-operator --name prometheus-operator --namespace monitoring -f values.yaml

更新值后,grafana 应该能够发送电子邮件,但我看到http://localhost:3000/admin/settings没有使用 values.yaml 文件提供的值进行更新

4

1 回答 1

0

参考 Grafna图表,您需要:

# `existingSecret` is a reference to an existing secret containing the smtp configuration
于 2019-08-07T16:39:27.630 回答