-
Notifications
You must be signed in to change notification settings - Fork 70
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
Refactor Infra, pkg/provider and GKE provider #413
Merged
Merged
Conversation
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
* Made call to gke.NewGKEClient lazy * Add GKE.checkDeploymentVarsAndFiles to validate inputs * Remov GKE.setProjectID Signed-off-by: Hrishikesh Barman <[email protected]>
* Add support for default DeploymentVars and DeploymentFiles * Update gke.New * Update infra to use provider.DeploymentResource Signed-off-by: Hrishikesh Barman <[email protected]>
* Add test for provider.MergeDeploymentVars * Change provider.DefaultDeploymentResource to NewDeploymentResource * Add provider.MergeDeploymentVars * Separate FlagDeploymentVars and DefaultDeploymentVars Signed-off-by: Hrishikesh Barman <[email protected]>
geekodour
commented
Jul 19, 2020
Signed-off-by: Hrishikesh Barman <[email protected]>
Signed-off-by: Hrishikesh Barman <[email protected]>
geekodour
commented
Jul 19, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with some small nits
* Update SetupGKEDeploymentResources to SetupDeploymentResources * Minor refactorings to checkDeploymentVarsAndFiles Signed-off-by: Hrishikesh Barman <[email protected]>
|
kushalShukla-web
pushed a commit
to kushalShukla-web/test-infra
that referenced
this pull request
Feb 8, 2025
* Made call to GKE.NewGKEClient lazy * Remove GKE.setProjectID and add Add GKE.checkDeploymentVarsAndFiles * Add provider.DeploymentResource with support for default DeploymentVars and FlagDeploymentVars * Add provider.MergeDeploymentVars and tests * Add GKE.SetupDeploymentResources which will allow provider specific DeploymentVars Signed-off-by: Hrishikesh Barman <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Since we're on our way to add KIND support (#390) and EKS support (#384) for different test-infra components, it makes sense to allow the
DeploymentVars
to be variable among different providers aswell.This PR adds some minor refactoring and adds the support for
DeploymentVars
overriding and addsDefaultDeploymentVars
aswell. So that theDefaultDeploymentVars
can be overridden by-v
. This can also be easily extended to add support for provider specificDeploymentVars
(#406)Here are the things that this PR adds:
gke.NewGKEClient
be called lazily insideinfra
GKE.setProjectID
and addGKE.checkDeploymentVarsAndFiles
to validate inputDeploymentVars
andDeploymentFiles
provider.DeploymentResource
provider.MergeDeploymentVars
and tests which is basically the overriding ideaDeploymentVars
intoFlagDeploymentVars
andDefaultDeploymentVars
Todo:
cc : @rajdas98 @krasi-georgiev @nevill @weastel