From 92e9caca7ad1b9380bff7560752e67d1fc09533e Mon Sep 17 00:00:00 2001 From: Eugen Stan Date: Sun, 2 Jan 2022 22:47:25 +0200 Subject: [PATCH] Added example for free-ipa configuration. --- examples/freeipa.helm-chart.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/freeipa.helm-chart.yml diff --git a/examples/freeipa.helm-chart.yml b/examples/freeipa.helm-chart.yml new file mode 100644 index 0000000..ece2479 --- /dev/null +++ b/examples/freeipa.helm-chart.yml @@ -0,0 +1,22 @@ +# +# This file contains example configuration for FreeIPA +# This is for helm chart, adapt them to your needs + +image: + repository: dignajar/another-ldap-auth + tag: "latest" + +# FreeIPA config +ldap: + existingSecret: + logLevel: "INFO" + logFormat: "TEXT" + cacheExpiration: 10 + # We don't expose the service outside kubernetes - use it for ingress external auth + httpsSupport: "disabled" + endpoint: "ldaps://my-ipa-dns-or-ip:636" + managerDnUsername: "uid=manager-bind-dn,cn=users,cn=accounts,dc=example,dc=ro" + managerDnPassword: "put pass for manager-bind-dn" + bindDN: "uid={username},cn=users,cn=accounts,dc=example,dc=ro" + searchBase: "cn=users,cn=accounts,dc=example,dc=ro" + searchFilter: "(&(objectClass=posixAccount)(uid={username}))" \ No newline at end of file