Skip to content

Latest commit

 

History

History
120 lines (90 loc) · 12.3 KB

File metadata and controls

120 lines (90 loc) · 12.3 KB
graph LR
    SSHClientCore["SSHClientCore"]
    GroupOrchestrator["GroupOrchestrator"]
    ConfigAuthManager["ConfigAuthManager"]
    AppTaskProcessor["AppTaskProcessor"]
    UtilityServices["UtilityServices"]
    AppTaskProcessor -- "prepares tasks for" --> SSHClientCore
    AppTaskProcessor -- "prepares tasks for" --> GroupOrchestrator
    SSHClientCore -- "uses for configuration and authentication" --> ConfigAuthManager
    GroupOrchestrator -- "operates on collections of" --> SSHClientCore
    ConfigAuthManager -- "uses" --> UtilityServices
    SSHClientCore -- "uses" --> UtilityServices
    AppTaskProcessor -- "uses" --> UtilityServices
    click SSHClientCore href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/fabric/SSHClientCore.md" "Details"
    click GroupOrchestrator href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/fabric/GroupOrchestrator.md" "Details"
    click ConfigAuthManager href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/fabric/ConfigAuthManager.md" "Details"
    click AppTaskProcessor href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/fabric/AppTaskProcessor.md" "Details"
    click UtilityServices href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/fabric/UtilityServices.md" "Details"
Loading

CodeBoardingDemoContact

Component Details

The Fabric architecture is designed to facilitate secure and efficient remote execution and file transfer over SSH. Its core functionality revolves around managing individual SSH connections and orchestrating operations across multiple hosts. A dedicated configuration and authentication system ensures secure access, while a task processing layer prepares and expands user commands for execution. Supporting these primary functions are various utility services and a robust exception handling mechanism to manage operational errors.

SSHClientCore

Manages individual SSH connections, executes remote commands, handles file transfers, and establishes SSH tunnels. It forms the fundamental layer for interacting with remote hosts.

Related Classes/Methods:

GroupOrchestrator

Orchestrates and executes operations (commands, file transfers) across a defined group of remote hosts, managing serial or parallel execution and aggregating results.

Related Classes/Methods:

ConfigAuthManager

Manages Fabric's configuration settings, including loading SSH configurations, and handles authentication processes for establishing secure connections.

Related Classes/Methods:

AppTaskProcessor

Serves as the main entry point for the Fabric application, responsible for initializing the core program and preparing/expanding user-defined tasks for execution.

Related Classes/Methods:

UtilityServices

Provides common utility functions used across various Fabric components, such as retrieving local user information, and defines custom exceptions for error handling.

Related Classes/Methods: