-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
New flag to allow option for passing a config file for addon configure command. #20129
base: master
Are you sure you want to change the base?
Conversation
|
Welcome @omleteer! |
Hi @omleteer. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Can one of the admins verify this patch? |
/ok-to-test |
This comment has been minimized.
This comment has been minimized.
Allow multiple addons in a single config file.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
…#20198) the linux amd64 download url error
…rnetes#20209) Bumps [github.com/otiai10/copy](https://github.com/otiai10/copy) from 1.14.0 to 1.14.1. - [Release notes](https://github.com/otiai10/copy/releases) - [Commits](otiai10/copy@v1.14.0...v1.14.1) --- updated-dependencies: - dependency-name: github.com/otiai10/copy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [github.com/elazarl/goproxy](https://github.com/elazarl/goproxy) from 0.0.0-20210110162100-a92cc753f88e to 1.2.6. - [Release notes](https://github.com/elazarl/goproxy/releases) - [Commits](https://github.com/elazarl/goproxy/commits/v1.2.6) --- updated-dependencies: - dependency-name: github.com/elazarl/goproxy dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: omleteer The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This comment has been minimized.
This comment has been minimized.
Adding integ test that loads basic config.
This comment has been minimized.
This comment has been minimized.
/check-cla |
1 similar comment
/check-cla |
@@ -0,0 +1,30 @@ | |||
{ |
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.
lets have top field called "addons:"
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.
+1 Done
test/integration/configure_test.go
Outdated
) | ||
|
||
// TestConfigure tests addons configure command to ensure that configurations are loaded/set correctly | ||
func TestAddonsConfigure(t *testing.T) { |
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.
I would prefer have this in same test as other addons same cluster,
so we pass the addon config file to the same cluster that enabled bunch of addons without config file,
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.
+1. Ive have moved the test back to addons_test.
…evel 'addons' in config file
Keywords which can automatically close issues and at(@) or hashtag(#) mentions are not allowed in commit messages. The list of commits with invalid commit messages:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
This comment has been minimized.
This comment has been minimized.
kvm2 driver with docker runtime
Times for minikube ingress: 20.2s 20.7s 15.1s 19.1s 18.6s Times for minikube start: 53.5s 51.3s 51.1s 161.5s 53.6s docker driver with docker runtime
Times for minikube start: 23.5s 26.6s 26.1s 25.1s 25.3s Times for minikube ingress: 12.4s 12.9s 13.4s 12.4s 12.4s docker driver with containerd runtime
Times for minikube ingress: 22.9s 22.9s 22.9s 22.7s 39.5s Times for minikube start: 24.7s 21.1s 23.8s 22.9s 23.9s |
Minor UI Change (Before and After described in the ticket) but tl;dr:
BEFORE
Currently when configuring addons with the command:
eg:
The user is prompted to input the values one by one, eg:
and so on. This makes it hard to store/load values in a scripted environemnt. Some times it easier to provide a config file containing so that the values can be read from this.
AFTER
Add a "-c" local flag to the addon configure command, eg:
etc