From 8a20f13fea3f6f0806a98bffea8fa10579aae842 Mon Sep 17 00:00:00 2001
From: CLEMENTE Damien <damien.clemente@etu.univ-amu.fr>
Date: Wed, 12 Mar 2025 00:13:20 +0000
Subject: [PATCH] Update file 6.Creation_openldap.md

---
 6.Creation_openldap.md | 108 ++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 107 insertions(+), 1 deletion(-)

diff --git a/6.Creation_openldap.md b/6.Creation_openldap.md
index e0ad88b..b775bfe 100644
--- a/6.Creation_openldap.md
+++ b/6.Creation_openldap.md
@@ -210,4 +210,110 @@ Identifiants de connexion :
 Ce déploiement permet de gérer un annuaire LDAP efficacement dans un cluster Kubernetes, tout en garantissant une interface web simplifiée pour l'administration.
 
 ![ldap](/images/ldap1.png)
-![ldap2](/images/ldap2.png)
\ No newline at end of file
+![ldap2](/images/ldap2.png)
+
+- Voici la configuration complete de mon LDAP : 
+```bash
+# LDIF Export for dc=unzy
+# Server: openldap-service (openldap-service)
+# Search Scope: sub
+# Search Filter: (objectClass=*)
+# Total Entries: 9
+#
+# Generated by phpLDAPadmin (http://phpldapadmin.sourceforge.net) on March 9, 2025 4:35 pm
+# Version: 1.2.5
+
+version: 1
+
+# Entry 1: dc=unzy
+dn: dc=unzy
+dc: unzy
+o: devops
+objectclass: top
+objectclass: dcObject
+objectclass: organization
+
+# Entry 2: cn=admin,dc=unzy
+dn: cn=admin,dc=unzy
+cn: admin
+description: LDAP administrator
+objectclass: simpleSecurityObject
+objectclass: organizationalRole
+userpassword: {SSHA}k0E3DnJhMzTy0+2PTfS4n5u84U3sWx+U
+
+# Entry 3: ou=Groups,dc=unzy
+dn: ou=Groups,dc=unzy
+objectclass: organizationalUnit
+objectclass: top
+ou: Groups
+
+# Entry 4: cn=Admin,ou=Groups,dc=unzy
+dn: cn=Admin,ou=Groups,dc=unzy
+cn: Admin
+gidnumber: 502
+memberuid: dclemente
+objectclass: posixGroup
+objectclass: top
+
+# Entry 5: cn=Famille,ou=Groups,dc=unzy
+dn: cn=Famille,ou=Groups,dc=unzy
+cn: Famille
+gidnumber: 500
+memberuid: dclemente
+memberuid: mclemente
+memberuid: fclemente
+objectclass: posixGroup
+objectclass: top
+
+# Entry 6: ou=Users,dc=unzy
+dn: ou=Users,dc=unzy
+objectclass: organizationalUnit
+objectclass: top
+ou: Users
+
+# Entry 7: cn=Damien clemente,ou=Users,dc=unzy
+dn: cn=Damien clemente,ou=Users,dc=unzy
+cn: Damien clemente
+gidnumber: 502
+givenname: Damien
+homedirectory: /home/users/dclemente
+loginshell: /bin/bash
+objectclass: inetOrgPerson
+objectclass: posixAccount
+objectclass: top
+sn: clemente
+uid: dclemente
+uidnumber: 1000
+userpassword: kube
+
+# Entry 8: cn=Frederic Clemente,ou=Users,dc=unzy
+dn: cn=Frederic Clemente,ou=Users,dc=unzy
+cn: Frederic Clemente
+gidnumber: 500
+givenname: Frederic
+homedirectory: /home/users/fclemente
+loginshell: /bin/bash
+objectclass: inetOrgPerson
+objectclass: posixAccount
+objectclass: top
+sn: Clemente
+uid: fclemente
+uidnumber: 1002
+userpassword: kube
+
+# Entry 9: cn=Mathieu Clemente,ou=Users,dc=unzy
+dn: cn=Mathieu Clemente,ou=Users,dc=unzy
+cn: Mathieu Clemente
+gidnumber: 500
+givenname: Mathieu
+homedirectory: /home/users/mclemente
+loginshell: /bin/bash
+objectclass: inetOrgPerson
+objectclass: posixAccount
+objectclass: top
+sn: Clemente
+uid: mclemente
+uidnumber: 1001
+userpassword: kube
+
+```
\ No newline at end of file
-- 
GitLab