-
Notifications
You must be signed in to change notification settings - Fork 73
EKS support for prombench #384
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
geekodour
merged 34 commits into
prometheus:master
from
weastel:eks_support_for_prombench
Sep 5, 2020
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
03b4431
Add documentation for gke and update file names in both prombench and…
weastel 168afb7
Replace occurence of PROJECT_ID to GKE_PROJECT_ID in gke.md
weastel 202294d
Move gke specific files to environment directory
weastel 91a777c
Add authentication support for eks
weastel 9845e35
Add support for deploymentRangeVars
weastel 8ee3357
Add cluster and nodepool related functionalities for EKS
weastel 975029a
Add NewK8sProvider support for eks and CLI related changes to incorpo…
weastel e944eff
Fix minor tweaks
weastel 7ade54c
Add readme.md changes
weastel 1876850
Fix NewK8sProvider
weastel fd57eed
Change instance type of eks so it matches gke configurations
weastel 604e893
Fix PR to solve test based issues
weastel f22d10a
Chnage as per review
weastel f9157f7
Run genflagdocs.sh to pass test
weastel b7cbe4c
Add documentation for eks
weastel 2bb46e5
Make makefile more readable
weastel f30a228
remove rangeVars and change documentation for the same and minor fixes
weastel 2b291e6
Run docs cmd
weastel 0db7285
Fix go mod and update eks.go file
weastel ed35226
Update documentations
weastel 9a2afdd
CHnage toml based credentials to yaml based
weastel 1ad5384
CHnage toml based credentials to yaml based
weastel c9e343f
Fix formatting issues
weastel 4238719
Add docs
weastel b6ce4e7
Add info command for eks and documentational changes
weastel 0032526
Remove unnecessary debugging
weastel e882504
Rebased with respect to gke specific and added info command
weastel 6872fe1
Fix rebased errors
weastel 77c7248
Update docs changes and remove uneccessary debugging
weastel 91eaacd
Add documentational chages
weastel aa8fd1d
Change logging for log.Fatal to fmt.Error
weastel 3dfc2ae
Add aws iam based authentication
weastel 44870e4
Add SERVICEACCOUNT_CLIENT_EMAIL as [email protected] by default
weastel a13d384
Display hostname for eks ingress service
weastel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.