This commit is contained in:
Mik-TF 2024-05-06 10:27:02 -04:00
parent 776dff1417
commit 88ce926fc8
5 changed files with 46 additions and 46 deletions

View File

@ -4,16 +4,16 @@ We present in this section of the developers book a partial list of system compo
<h2> Table of Contents </h2>
- [Reliable Message Bus (RMB)](rmb/rmb_toc.md)
- [Introduction to RMB](rmb/rmb_intro.md)
- [RMB Specs](rmb/rmb_specs.md)
- [RMB Peer](rmb/uml/peer.md)
- [RMB Relay](rmb/uml/relay.md)
- [Reliable Message Bus (RMB)](rmb_toc.md)
- [Introduction to RMB](rmb_intro.md)
- [RMB Specs](rmb_specs.md)
- [RMB Peer](peer.md)
- [RMB Relay](relay.md)
- [ZOS](zos/index.md)
- [Manual](./zos/manual/manual.md)
- [Workload Types](./zos/manual/workload_types.md)
- [Internal Modules](./zos/internals/internals.md)
- [Capacity](./zos/internals/capacity.md)
- [Performance Monitor Package](./zos/performance/performance.md)
- [API](./zos/manual/api.md)
- [ZOS](zos_readme.md)
- [Manual](manual.md)
- [Workload Types](workload_types.md)
- [Internal Modules](internals.md)
- [Capacity](capacity.md)
- [Performance Monitor Package](performance.md)
- [API](api.md)

View File

@ -74,14 +74,14 @@ Modules of zos are completely internal. There is no way for an external user to
Here is a list of the major ZOS modules.
- [Identity](identity/index.md)
- [Node](node/index.md)
- [Storage](storage/index.md)
- [Network](network/index.md)
- [Flist](flist/index.md)
- [Container](container/index.md)
- [VM](vmd/index.md)
- [Provision](provision/index.md)
- [Identity](identity_readme.md)
- [Node](node_readme.md)
- [Storage](storage_readme.md)
- [Network](network_readme.md)
- [Flist](flist_readme.md)
- [Container](container_readme.md)
- [VM](vmd_readme.md)
- [Provision](provision_readme.md)
## Capacity

View File

@ -27,7 +27,7 @@ Once initialized, with the network daemon running (a process that will handle al
## Networkd functionality
The network daemon is in itself responsible for a few tasks, and working together with the [provision daemon](../provision) it mainly sets up the local infrastructure to get the user network resources, together with the wireguard configurations for the user's mesh network.
The network daemon is in itself responsible for a few tasks, and working together with the [provision daemon](provision_readme.md) it mainly sets up the local infrastructure to get the user network resources, together with the wireguard configurations for the user's mesh network.
The Wireguard mesh is an overlay network. That means that traffic of that network is encrypted and encapsulated in a new traffic frame that the gets transferred over the underlay network, here in essence the network that has been set up during boot of the node.

View File

@ -55,7 +55,7 @@ To be able to contact the node directly you need to run
- `yggdrasil`
- `rmb` (correctly configured)
Once you have those running you can now contact the node over `rmb`. For a reference implementation (function names and parameters) please refer to [RMB documentation](../../rmb/rmb_toc.md)
Once you have those running you can now contact the node over `rmb`. For a reference implementation (function names and parameters) please refer to [RMB documentation](rmb_toc.md)
Here is a rough example of how low level creation of a deployment is done.

View File

@ -2,27 +2,27 @@
<h2> Table of Contents </h2>
- [Manual](./manual/manual.md)
- [Workload Types](./manual/workload_types.md)
- [Internal Modules](./internals/internals.md)
- [Identity](./internals/identity/index.md)
- [Node ID Generation](./internals/identity/identity.md)
- [Node Upgrade](./internals/identity/upgrade.md)
- [Node](./internals/node/index.md)
- [Storage](./internals/storage/index.md)
- [Network](./internals/network/index.md)
- [Introduction](./internals/network/introduction.md)
- [Definitions](./internals/network/definitions.md)
- [Mesh](./internals/network/mesh.md)
- [Setup](./internals/network/setup_farm_network.md)
- [Flist](./internals/flist/index.md)
- [Container](./internals/container/index.md)
- [VM](./internals/vmd/index.md)
- [Provision](./internals/provision/index.md)
- [Capacity](./internals/capacity.md)
- [Performance Monitor Package](./performance/performance.md)
- [Public IPs Validation Task](./performance/publicips.md)
- [CPUBenchmark](./performance/cpubench.md)
- [IPerf](./performance/iperf.md)
- [Health Check](./performance/healthcheck.md)
- [API](./manual/api.md)
- [Manual](manual.md)
- [Workload Types](workload_types.md)
- [Internal Modules](internals.md)
- [Identity](identity_readme.md)
- [Node ID Generation](identity.md)
- [Node Upgrade](upgrade.md)
- [Node](node_readme.md)
- [Storage](storage_readme.md)
- [Network](network_readme.md)
- [Introduction](introduction.md)
- [Definitions](definitions.md)
- [Mesh](mesh.md)
- [Setup](setup_farm_network.md)
- [Flist](flist_readme.md)
- [Container](container_readme.md)
- [VM](vmd_readme.md)
- [Provision](provision_readme.md)
- [Capacity](capacity.md)
- [Performance Monitor Package](performance.md)
- [Public IPs Validation Task](publicips.md)
- [CPUBenchmark](cpubench.md)
- [IPerf](iperf.md)
- [Health Check](healthcheck.md)
- [API](api.md)