forked from kubernetes/kops
-
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.
- Publishing documentation to grow with the PR - Defining command line flags
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Private Networking in AWS | ||
|
||
AWS offers a few different VPC subnet modes. Below are examples of different subnets that kops supports. | ||
|
||
Kops will default to **public** subnets. In order to override this behavior use the following flags to change subnet type for instance groups. | ||
|
||
##### Subnet modes | ||
|
||
### All Private | ||
|
||
All masters and minions running in a private subnet in a VPC | ||
|
||
``` | ||
kops create cluster ... --masters-private-subnet --nodes-private-subnet | ||
``` | ||
|
||
### Private Masters, Public Nodes | ||
|
||
All masters running in a private subnet with all nodes in a public subnet in a VPC | ||
|
||
``` | ||
kops create cluster ... --masters-private-subnet | ||
``` | ||
|