-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start of the vdc concept with model to reality flow
- Loading branch information
1 parent
05b874c
commit 9f76869
Showing
1 changed file
with
21 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# VDC technical concept | ||
|
||
## definition 3script | ||
|
||
A VDC is defined through 3script. This declarative definition of how a VDC should be is parsed into an in-memory model. | ||
|
||
## query 3script | ||
|
||
3script that queries the deployed state on the grid (reality). The output can be json for machine parsing or markdown for human interpretation. | ||
|
||
## action 3script | ||
|
||
A 3script with the actions needed to bring the reality to the desired state defined in the definition 3script. | ||
These are 3script actions executed through the web3gw. | ||
|
||
## from definition to reality | ||
|
||
1. The definition 3script is parsed to an in memory model. | ||
2. A query 3script is generated to query the reality. | ||
3. The query 3script is executed and an action 3script is generated (the web3gw sal is not called directly to align relity to the model) | ||
4. The action 3script is executed to bring reality in the desired state |