gpt4 book ai didi

kubernetes - 如何在Grafana Helm 图中配置自定义LDAP?

转载 作者:行者123 更新时间:2023-12-02 11:50:42 35 4
gpt4 key购买 nike

我是Kubernetes和Helm的新手,尝试使用我自己的LDAP定制稳定/格拉那娜Helm图表(https://github.com/helm/charts/tree/master/stable/grafana)。图表的auth.ldap文件的grafana.inildap部分和values.yaml部分之间有什么区别?如何配置LDAP主机地址和凭据?

最佳答案

在Grafana上启用LDAP配置。您需要更新两个部分。

在values.yaml中,有grafana.ini和ldap两个部分。要启用LDAP,您需要更新两个部分。检查以下内容:

首先grafana.ini

grafana.ini:
paths:
data: /var/lib/grafana/data
logs: /var/log/grafana
plugins: /var/lib/grafana/plugins
provisioning: /etc/grafana/provisioning
analytics:
check_for_updates: true
log:
mode: console
grafana_net:
url: https://grafana.net
## LDAP Authentication can be enabled with the following values on grafana.ini
## NOTE: Grafana will fail to start if the value for ldap.toml is invalid
auth.ldap:
enabled: true
allow_sign_up: true
config_file: /etc/grafana/ldap.toml

在grafana.ini部分中,首先将auth.ldap设置为true,然后将配置文件指定为ldap.toml。

二,ldap
## Grafana's LDAP configuration
## Templated by the template in _helpers.tpl
## NOTE: To enable the grafana.ini must be configured with auth.ldap.enabled
ldap:
enabled: true
# `existingSecret` is a reference to an existing secret containing the ldap configuration
# for Grafana in a key `ldap-toml`.
existingSecret: ""
# `config` is the content of `ldap.toml` that will be stored in the created secret
config: |-
verbose_logging = true

[[servers]]
host = "my-ldap-server"
port = 636
use_ssl = true
start_tls = false
ssl_skip_verify = false
bind_dn = "uid=%s,ou=users,dc=myorg,dc=com"

在这一部分中, Helm 使用第一步中指定的LDAP配置准备ldap.toml文件。

因此,根据配置更新LDAP主机,端口,bind_dn。

关于kubernetes - 如何在Grafana Helm 图中配置自定义LDAP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59161185/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com