Ansible DS User Facing Design


Collection naming

We should carefully name the collection so it’s well-aligned with other products and it’s well discoverable in the Ansible world.

Suggested upstream names for the collection (up for discussion): ds389.ansible_ds

Instance Topology Configuration

The whole configuration will be done in Ansible Inventory. It’s the core and the main source of truth for the whole topology. An action plugin (with a module behind it) will consume the inventory and change/create the topology defined by it. The plugin name will be ds389server**. Only top-level variables will have the **ds389_server prefix. The inventory will have a nested structure. The example can be found at the end of the document.

Role Structure

Please note that Monitoring and Logging should be managed via external tools. It’s a general Ansible design approach which is already respected by other projects. Additionally, in the future, we can work with Logging System Role to provide an integrated environment for the logging.

Plugin Structure

The detailed description for theses plugins and the design will be posted on a separate page: ds389_module design.

Additional, in development, we have task plugins which will be added in timely maner. For example, ds389_memberof_fixup can be used for the MemberOf plugin Fixup task. And its variables will be called with the role name prefix (i.e. ds389_memberof_fixup_filter). Details can be found here: Ansible 389 DS Tasks Design

Ansible Inventory Structure Example

---
all:
  children:
    ldapservers:
      vars:
        ds389_server_instances:
          - name: localhost
            rootpw: ""
            backends:
              - name: userroot
                suffix: dc=example,dc=com
                # ancestors
                indexes:
                  - name: myattr
                    indextype:
                      - eq

      children:
        suppliers:
          vars:
            ds389_option_01:
              - name: localhost.userroot
                merge:
                  ReplicaRole: supplier
                  ReplicaPort: 636
                  ReplicaTransportInfo: SSL
                  ReplicaBindDN: cn=replication manager, cn=config
                  ReplicaCredentials: ""
            ds389_agmts:
              - target: ""
          hosts:
            ds389vm1:
              ds389_option_02:
                - name: localhost.userroot
                  merge:
                    ReplicaId: 1
                - name: ds389_agmts
                  append:
                    - target: ds389vm2

            ds389vm2:
              ds389_option_02:
                - name: localhost.userroot
                  merge:
                    ReplicaId: 2
                - name: ds389_agmts
                  append:
                    - target: ds389vm1
                      ReplicaIgnoreMissingChange: once

        consumers:
          vars:
            ds389_option_01:
              - name: localhost.userroot
                merge:
                  ReplicaRole: consumer
                  ReplicaPort: 636
                  ReplicaTransportInfo: SSL
                  ReplicationManagerDN: cn=replication manager, cn=config
                  ReplicationManagerPassword: ""
          hosts:
            ds389vm3:
            ds389vm4:

Decrypted Vault inventory is:

---
# This is the clear version of the vault file which should be
# - copied to inventory/testds389_vault.yaml
# - then encrypted by using:
#     ansible-vault encrypt --ask-vault-password --vault-id testds389_vault testds389_vault.yaml
all:
  children:
    ldapservers:
      vars:
        vault_ds389_rootpw: !unsafe rootdnpw00
        vault_ds389_replmanpw: !unsafe replmanpw00

Notes about this example:

Last modified on 2 April 2024