-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for EKS Hybrid Nodes (#8062)
add support for hybrid nodes
- Loading branch information
Showing
36 changed files
with
1,876 additions
and
508 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# An example of cluster config with remote networking configured. | ||
apiVersion: eksctl.io/v1alpha5 | ||
kind: ClusterConfig | ||
|
||
metadata: | ||
name: hybrid-nodes | ||
region: us-west-2 | ||
|
||
accessConfig: | ||
authenticationMode: API_AND_CONFIG_MAP | ||
|
||
vpc: | ||
cidr: 10.226.98.0/23 | ||
|
||
remoteNetworkConfig: | ||
vpcGatewayID: tgw-028fbe2348e6eed74 | ||
iam: | ||
provider: IRA # default is ssm | ||
caBundleCert: xxxx | ||
remoteNodeNetworks: | ||
# eksctl will create, behind the scenes, SG rules, routes, and a VPC gateway attachment, | ||
# to facilitate communication between remote network(s) and EKS control plane, via the attached gateway | ||
- cidrs: ["10.80.146.0/24"] |
Oops, something went wrong.