-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
60 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ Contents: | |
source/glossary | ||
source/resource | ||
source/orchestration | ||
source/transports | ||
source/examples | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.. _transports_details: | ||
|
||
|
||
Transports | ||
========== | ||
|
||
Transports are used by Solar to communicate with managed nodes. | ||
Transports are also resuorces, so they have all features of it. | ||
Transports should be added to a node, but if you need you can add different transports for different resources. | ||
|
||
|
||
How it works | ||
------------ | ||
|
||
* Each resource in solar have randomly generated :ref:`transports-id-term`, when you connect resources together, | ||
* Solar will ensure that correct `transport_id` is passed around. then using this `transport_id` a correct real value is fetched. | ||
* Changing transports contents will not cause resource.update action for related resources. | ||
|
||
Sync transport | ||
-------------- | ||
|
||
It uploads required information to target node. | ||
|
||
Currently there are following sync transports available: | ||
|
||
* ssh | ||
* rsync | ||
* solar_agent | ||
* torrent | ||
|
||
|
||
Run transport | ||
------------- | ||
|
||
It is responsible for running command on remote host. | ||
|
||
Currently there are following run transports available: | ||
|
||
* ssh | ||
* solar_agent | ||
|
||
|
||
|
||
BAT transport | ||
------------- | ||
|
||
A transport that will automaticaly select best available transport (BAT) that is available for given resource. Currently it's default enabled transport, so when you add more transports to your system, then everything happens automaticaly. |