-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Victor Morales <[email protected]>
- Loading branch information
1 parent
99498f9
commit 609cd4d
Showing
4 changed files
with
56 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
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,30 @@ | ||
# install.sh | ||
|
||
This bash script installs the following dependencies required for the creation | ||
of a multi-cluster environment. | ||
|
||
- [KinD](https://kind.sigs.k8s.io/) | ||
- [kubectl](https://kubernetes.io/docs/reference/kubectl/kubectl/) | ||
- [Docker](https://www.docker.com/) | ||
- [kpt](https://kpt.dev/) | ||
|
||
The following diagram shows the result after its execution. | ||
|
||
```text | ||
+---------------------------------+ +---------------------------------+ +---------------------------------+ +---------------------------------+ | ||
| nephio (k8s) | | regional (k8s) | | edge-1 (k8s) | | edge-2 (k8s) | | ||
| +-----------------------------+ | | +-----------------------------+ | | +-----------------------------+ | | +-----------------------------+ | | ||
| | nephio-control-plane | | | | regional-control-plane | | | | edge-1-control-plane | | | | edge-2-control-plane | | | ||
| | podSubnet: 10.196.0.0/16 | | | | podSubnet: 10.197.0.0/16 | | | | podSubnet: 10.198.0.0/16 | | | | podSubnet: 10.199.0.0/16 | | | ||
| | serviceSubnet: 10.96.0.0/16 | | | | serviceSubnet: 10.97.0.0/16 | | | | serviceSubnet: 10.98.0.0/16 | | | | serviceSubnet: 10.99.0.0/16 | | | ||
| +-----------------------------+ | | +-----------------------------+ | | +-----------------------------+ | | +-----------------------------+ | | ||
| | eth0(172.88.0.2/16) | | | | eth0(172.89.0.2/16) | | | | eth0(172.90.0.2/16) | | | | eth0(172.91.0.2/16) | | | ||
| +-----------------------------+ | | +-----------------------------+ | | +-----------------------------+ | | +-----------------------------+ | | ||
| | | | | | | | | ||
+--------------+------------------+ +--------------+------------------+ +--------------+------------------+ +--------------+------------------+ | ||
| | | | | ||
+=========+============+ +=========+============+ +=========+===========+ +=========+===========+ | ||
| net-nephio(bridge) | | net-regional(bridge) | | net-edge-1(bridge) | | net-edge-2(bridge) | | ||
| 172.88.0.0/16 | | 172.89.0.0/16 | | 172.90.0.0/16 | | 172.91.0.0/16 | | ||
+======================+ +======================+ +=====================+ +=====================+ | ||
``` |
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