You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flow chart of: Extension registration during installation
flowchart TD
A[Core] -->|Fetch all extensions| B(ExtensionManager)
B --> | For each extension read the configuration file| C(Core ServiceAccountManager)
C --> | Send parsed information to Security| D(Security Plugin)
D -->| Read information and create a new service account | E(InternalUsersStorage)
E --> | Generate a password for the service account and store the hash | E(InternalUsersStorage)
E --> | Return success or failure message to core alongside password | A
A --> | Add password to extension configuration file | A
Loading
Sequence diagram of: Extension registration during installation
sequenceDiagram
title: Service Account Creation Sequence
participant A as Core
participant B as ExtensionManager
participant C as ServiceAccountManager
participant D as SecurityPlugin
participant E as InternalUsersStorage
A->B: Fetch all extensions
B->C: For each extension read the configuration file
C->D: Send parsed information to Security
D->E: Read information and create a new service account
E->E: Generate a password for the service account and store the hash
E->A: Return success or failure message to core alongside password
A->A: Add password to extension configuration file
Loading
The text was updated successfully, but these errors were encountered:
stephen-crawford
changed the title
[Diagram] Service account activity during extension installation
[Diagram] Service account creation during extension installation
Apr 10, 2023
stephen-crawford
added
triaged
Issues labeled as 'Triaged' have been reviewed and are deemed actionable.
and removed
untriaged
Require the attention of the repository maintainers and may need to be prioritized
labels
Apr 10, 2023
The text was updated successfully, but these errors were encountered: