From eb3cc1390be30e4b83ca768dff080b4d3f11ee3f Mon Sep 17 00:00:00 2001 From: Bert-Jan Fikse Date: Fri, 6 Mar 2026 17:54:07 +0100 Subject: [PATCH] feat: add basic ds389 docker setup and configuration Signed-off-by: Bert-Jan Fikse --- inventories/vagrant/host_vars/backend/389ds.yml | 3 +++ inventories/vagrant/hosts.yml | 4 ++++ playbooks/site.yml | 6 ++++++ 3 files changed, 13 insertions(+) create mode 100644 inventories/vagrant/host_vars/backend/389ds.yml diff --git a/inventories/vagrant/host_vars/backend/389ds.yml b/inventories/vagrant/host_vars/backend/389ds.yml new file mode 100644 index 0000000..f6372c8 --- /dev/null +++ b/inventories/vagrant/host_vars/backend/389ds.yml @@ -0,0 +1,3 @@ +# 389ds LDAP configuration for vagrant environment +ds389_suffix: "dc=local,dc=test" +ds389_root_password: "admin" diff --git a/inventories/vagrant/hosts.yml b/inventories/vagrant/hosts.yml index 207f8de..27cf21d 100644 --- a/inventories/vagrant/hosts.yml +++ b/inventories/vagrant/hosts.yml @@ -49,6 +49,10 @@ all: hosts: backend: + ds389_servers: + hosts: + backend: + authentik_servers: hosts: backend: diff --git a/playbooks/site.yml b/playbooks/site.yml index b7af5f4..51e1004 100644 --- a/playbooks/site.yml +++ b/playbooks/site.yml @@ -23,6 +23,12 @@ roles: - digitalboard.core.keycloak +- name: Deploy 389ds LDAP service + hosts: ds389_servers + become: yes + roles: + - digitalboard.core.389ds + - name: Deploy garage service hosts: garage_servers become: yes