28 lines
796 B
YAML
28 lines
796 B
YAML
|
|
---
|
||
|
|
# OpenLDAP Admin Credentials
|
||
|
|
# This is a PLACEHOLDER - you need to create the actual SealedSecret
|
||
|
|
#
|
||
|
|
# To create the sealed secret, run:
|
||
|
|
#
|
||
|
|
# kubectl create secret generic openldap-admin-secret \
|
||
|
|
# --namespace opencloud \
|
||
|
|
# --from-literal=admin-password='YOUR_SECURE_ADMIN_PASSWORD' \
|
||
|
|
# --from-literal=config-password='YOUR_SECURE_CONFIG_PASSWORD' \
|
||
|
|
# --dry-run=client -o yaml | \
|
||
|
|
# kubeseal --format yaml > openldap-admin-sealed.yaml
|
||
|
|
#
|
||
|
|
# Then replace this file with the output.
|
||
|
|
#
|
||
|
|
# LDAP Admin DN: cn=admin,dc=basicstack,dc=de
|
||
|
|
# LDAP Base DN: dc=basicstack,dc=de
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Secret
|
||
|
|
metadata:
|
||
|
|
name: openldap-admin-secret
|
||
|
|
namespace: opencloud
|
||
|
|
type: Opaque
|
||
|
|
stringData:
|
||
|
|
# REPLACE THESE WITH ACTUAL SEALED SECRET
|
||
|
|
admin-password: "CHANGE_ME"
|
||
|
|
config-password: "CHANGE_ME"
|