3.10. Connectors#

This section describes the Connectors functional component of Nubus for Kubernetes, the functions, components, and their relationships with each other. Nubus provides the IAM Connector functional element with interfaces that allow Nubus to connect external IAM systems. One implementation of such interfaces is the Nubus Directory Importer.

See also

Connectors in the functional components overview section

for information about purpose and tasks.

3.10.1. IAM Connector#

Nubus provides interfaces for connecting an external IAM system to Nubus for Kubernetes. The idea is that the external IAM system provides Nubus with identity data or the other way around. The interfaces allow the following uses:

  • The LDAP interface for read operations.

  • The LDAP interface for write operations to the external IAM system.

  • The UDM HTTP REST API for read- and write operations to the Nubus directory service.

The concept allows communication in one direction, unidirectional, or in both directions, bidirectional. It depends on the agreement between the two systems.

One direction from the Nubus perspective means that Nubus only receives, or only sends data. Both directions, Nubus receives and sends data. How the comparison and synchronization of the data between Nubus and the external directory or IAM system works, depends on the implementation of the connector.

Important

The IAM Connector is similar to an abstract class in the object oriented programming concept. An abstract class defines interfaces and needs distinct implementations. As functional element, the IAM Connector is part of the architecture model of Nubus.

3.10.2. Nubus Directory Importer#

The Nubus Directory Importer is an implementation of the IAM Connector interfaces. It’s a service that imports and synchronizes directory objects from a source directory service to the directory service in Nubus as a target directory service. It detects differences between the source and the target. Its not part of the Nubus for Kubernetes deployment. Operators must install it separately.

Fig. 3.46 shows the ArchiMate overview for the Nubus Directory Importer. At the top are the ArchiMate concepts representing the source directory service. The Nubus Directory Importer includes the following aspects:

  • A source directory service, for example Microsoft Active Directory.

  • A target directory service, in the Nubus for Kubernetes architecture it’s the directory service in Nubus, OpenLDAP.

  • The Nubus Directory Importer.

  • A Trust relationship for authentication between the Identity Provider in Nubus and the External Directory service.

Important

The Nubus Directory Importer doesn’t import sensitive password hashes from the external IAM Directory service. This would require extra active software running on the external IAM Directory service with higher security privileges. Usually, that’s an unwanted customization with security risks.

The importer imports user account information. The Identity Provider in Nubus needs a trust relationship with the External Directory service to handle or delegate authentication depending on the configuration.

Overview of the Nubus Directory Importer

Fig. 3.46 Overview of the Nubus Directory Importer#

See also

How-to connect to external IAM in Univention Nubus for Kubernetes - Operation Manual [1]

for information about how to connect an external IAM Directory service to Nubus and how to setup single sign-on.

3.10.2.1. Import#

This section explains how the import works. Fig. 3.47 shows the relationships between the parts involved in an import.

The import searches for all directory objects in both the source and target directory services. The importer then takes the two sets of directory objects, compares them, and determines the differences. Based on the differences, the importer creates a set of UDM objects that cover the necessary changes for the target directory service to synchronize with the source directory. The importer then sends the set of UDM objects to the UDM HTTP REST API.

The synchronization process writes the complete OU structure of the source to a dedicated OU in the LDAP Server of the Identity Store and Directory Service.

The Nubus Directory Importer is stateless and doesn’t store any local state.

Overview data import

Fig. 3.47 ArchiMate view on the import to the target directory service#

3.10.2.2. Data flow#

This section describes the data flow of the Nubus Directory Importer. Fig. 3.48 shows the data flow perspective together with the behavior. The data flow in the Nubus Directory Importer is unidirectional, from the source to the target.

In detail, the Nubus Directory Importer searches for user accounts and user groups in the external IAM system. The search process uses the LDAP interface. In a second step, the importer searches for user accounts and user groups in the Identity Store and Directory Service. The importer compares the two data sets. Based on the difference, it generates UDM objects and sends them to the UDM HTTP REST API. UDM then writes them to the Identity Store and Directory Service.

Dataflow of Nubus Directory Importer

Fig. 3.48 Data flow from the source directory service through the Nubus Directory Importer to the target directory service.#

3.10.2.3. Trust relationship for authentication#

Before users can sign in with their user account located in the source directory service, the operator must establish a trust relationship between the Identity Provider in Nubus and the source directory service. To establish the trust relationship, the operator can choose either SAML or OpenID Connect.

Fig. 3.49 shows the relationships involved. With the established trust relationship, users from the external directory service can sign in through a trusted identity provider and Nubus and the connected applications can verify the authenticity of the user. Which identity provider the users choose for sign-in depends on the configuration and is beyond the scope of this document.

Single sign-on solution of the Nubus Directory Importer

Fig. 3.49 Single sign-on solution of the Nubus for Kubernetes#

See also

Setup single sign-on in Univention Nubus for Kubernetes - Operation Manual [1]

for information about how to connect an external IAM Directory service to Nubus and how to setup single sign-on.