-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change adds EKS commands for the creation/deletion of clusters, nodegroups, and resources similar to the existing GKE commands in infra. The documentation for deploying prombench for EKS is also added. The changes in this commit are not sufficient for running funcbench on EKS. Signed-off-by: Drumil Patel <[email protected]>
- Loading branch information
Showing
14 changed files
with
997 additions
and
27 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,26 @@ | ||
cluster: | ||
name: {{ .CLUSTER_NAME }} | ||
version: 1.16 | ||
rolearn: {{ .ROLE_ARN }} | ||
resourcesvpcconfig: | ||
endpointpublicaccess: true | ||
subnetids: | ||
{{ range $subnetId := split .SUBNET_IDS .SEPARATOR }} | ||
- {{ $subnetId }} | ||
{{ end }} | ||
nodegroups: | ||
- nodegroupname: {{ .CLUSTER_NAME }} | ||
noderole: {{ .NODE_ROLE }} | ||
disksize: 100 | ||
subnets: | ||
{{ range $subnetId := split .SUBNET_IDS .SEPARATOR }} | ||
- {{ $subnetId }} | ||
{{ end }} | ||
instancetypes: | ||
- r6g.xlarge | ||
scalingconfig: | ||
desiredsize: 1 | ||
maxsize: 1 | ||
minsize: 1 | ||
labels: | ||
node-name: funcbench-{{ .PR_NUMBER }} |
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.