diff --git a/hswaw/kube/ldapweb.libsonnet b/hswaw/kube/ldapweb.libsonnet index 2bae6ae4..5e56e34b 100644 --- a/hswaw/kube/ldapweb.libsonnet +++ b/hswaw/kube/ldapweb.libsonnet @@ -3,8 +3,8 @@ local kube = import "../../kube/kube.libsonnet"; { cfg:: { - # Manually built from code.hackerspace.pl/q3k/ldap-web-public. - image: "registry.k0.hswaw.net/q3k/ldap-web:1597515993", + # Manually built from code.hackerspace.pl/informatic/ldap-web-public. + image: "registry.k0.hswaw.net/informatic/ldap-web:1633769899", webFQDN: error "webFQDN must be set!", }, @@ -38,6 +38,10 @@ local kube = import "../../kube/kube.libsonnet"; # -*- coding: utf-8 -*- import flask_wtf import wtforms + import secrets + + secret_key = secrets.token_hex(32) + ldap_url = 'ldap://ldap.hackerspace.pl' dn_format = "uid=%s,ou=people,dc=hackerspace,dc=pl"