-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aws: Support external pod connectivity for AWS via pod VM network
Add basic support for external pod connectivity via pod VM network. This requires pod VM instance to have two NICs. When using public IP with multi-NIC instance, we need to use elastic IP and attach it to the specific network interface. We can't use AssociatePublicIPAddress as it's meant to be used only with single NIC instance. So what we do is create a new network interface, attach it to the instance and associate an Elastic IP with this network interface Signed-off-by: Pradipta Banerjee <[email protected]>
- Loading branch information
Showing
4 changed files
with
316 additions
and
8 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
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 |
---|---|---|
|
@@ -67,4 +67,5 @@ type InstanceTypeSpec struct { | |
Arch string | ||
GPUs int64 | ||
Image string | ||
MultiNic bool | ||
} |