diff options
author | 2024-07-26 01:19:33 +0100 | |
---|---|---|
committer | 2024-07-26 15:08:59 +0100 | |
commit | fb586de23b05b69ea270e4d3a59bea419d57178e (patch) | |
tree | f41df1bc6cc68154f0f3c9ddb45b5db2fd5877a4 /kubernetes/namespaces/monitoring/grafana/configmap-ldap.yaml | |
parent | Move IPA CA to be a cluster-wide configmap (with Reflector) (diff) |
Add new Grafana LDAP config and ldap.toml config
Diffstat (limited to 'kubernetes/namespaces/monitoring/grafana/configmap-ldap.yaml')
-rw-r--r-- | kubernetes/namespaces/monitoring/grafana/configmap-ldap.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kubernetes/namespaces/monitoring/grafana/configmap-ldap.yaml b/kubernetes/namespaces/monitoring/grafana/configmap-ldap.yaml new file mode 100644 index 0000000..266bf7d --- /dev/null +++ b/kubernetes/namespaces/monitoring/grafana/configmap-ldap.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: grafana-ldap + namespace: monitoring +data: + # Enable LDAP Auth + GF_AUTH_LDAP_ENABLED: "true" + + # Set config file to the LDAP toml we mount in + GF_AUTH_LDAP_CONFIG_FILE: "/opt/pydis/grafana-ldap.toml" + + # Allow new users to be created from LDAP data + GF_AUTH_LDAP_ALLOW_SIGN_UP: "true" |