-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* asynchronous create + l2sts for non cloud facility ports. Issue 89 and Issue 90 * adding support for l3vpn for non-cloud facility ports. Issue #138 * handling bidirrectional dependency. needed for chameleon network and fabnetv4 * initial support for cloudlab/chameleon nodes communicating via fabric l2sts * tested old configs using stitch-info * added stitching-chameleon-cloudlab-via-fabric config file
- Loading branch information
Showing
19 changed files
with
633 additions
and
262 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
51 changes: 51 additions & 0 deletions
51
examples/demos/stitching-chameleon-cloudlab-via-fabric/config.fab
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,51 @@ | ||
provider: | ||
- cloudlab: | ||
- cloudlab_provider: | ||
credential_file: ~/.fabfed/fabfed_credentials.yml | ||
profile: cloudlab | ||
- fabric: | ||
- fabric_provider: | ||
credential_file: ~/.fabfed/fabfed_credentials.yml | ||
profile: fabric | ||
- chi: | ||
- chi_provider: | ||
credential_file: ~/.fabfed/fabfed_credentials.yml | ||
profile: chi | ||
|
||
config: | ||
- layer3: | ||
- my_layer: | ||
subnet: 192.168.1.0/24 | ||
gateway: 192.168.1.1 | ||
ip_start: 192.168.1.2 | ||
ip_end: 192.168.1.254 | ||
resource: | ||
- network: | ||
- cnet: | ||
provider: '{{cloudlab.cloudlab_provider }}' | ||
layer3: "{{ layer3.my_layer }}" | ||
- fabric_network: | ||
provider: '{{ fabric.fabric_provider }}' | ||
layer3: "{{ layer3.my_layer }}" | ||
stitch_with: | ||
- network: '{{ network.chi_network }}' | ||
stitch_option: | ||
site: TACC | ||
- network: '{{ network.cnet }}' | ||
stitch_option: | ||
site: UTAH | ||
- chi_network: | ||
provider: '{{ chi.chi_provider }}' | ||
name: stitch_net | ||
layer3: "{{ layer3.my_layer }}" | ||
- node: | ||
- cloudlab_node: | ||
provider: '{{ cloudlab.cloudlab_provider }}' | ||
network: "{{ network.cnet }}" | ||
count: 1 | ||
- chi_node: | ||
provider: '{{ chi.chi_provider }}' | ||
image: CC-Ubuntu20.04 | ||
network: '{{ network.chi_network }}' | ||
flavor: m1.medium | ||
count: 1 |
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
Oops, something went wrong.