-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Remove ExtraArgs kubeadm preflight check #63673
Remove ExtraArgs kubeadm preflight check #63673
Conversation
This check pulled in a number of dpendencies that bloated the dep graph. The feature itself was not worth an extra 500 dependencies so we decided to remove the feature. Closes kubernetes/kubeadm#497 Signed-off-by: Chuck Ha <ha.chuck@gmail.com>
i was trying luxas' suggestion out and ended up with this exact change :) LGTM 👍 |
we'll need a release note as we are dropping some user facing functionality |
/ok-to-test |
@chuckha fix the test failures, otherwise lgtm. |
/test pull-kubernetes-integration |
/test pull-kubernetes-verify |
/test pull-kubernetes-integration |
/test pull-kubernetes-verify |
/lgtm |
/assign @luxas Tim, Lucas, this is ready! /lgtm |
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.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: chuckha, dims, kad, timothysc The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test all [submit-queue is verifying that this PR is safe to merge] |
/test pull-kubernetes-integration |
Automatic merge from submit-queue (batch tested with PRs 63673, 63712). If you want to cherry-pick this change to another branch, please follow the instructions here. |
Thanks @chuckha! This LGTM as well 👍 |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. register client-go auth plugins for e2e e2e depends on use of the gcp client-go auth provider, but did not explicitly register the auth provider. it indirectly imported the plugins via a roundabout chain (see #63731 (comment)) which broke when those imports were trimmed in #63673 if e2e requires these auth plugins, it should include them explicitly in the top-level test package fixes #63731 ```release-note NONE ```
This check pulled in a number of dependencies that bloated the dep graph.
The feature itself was not worth an extra 500 dependencies so we decided
to remove the feature.
Closes kubernetes/kubeadm#497
Signed-off-by: Chuck Ha ha.chuck@gmail.com
What this PR does / why we need it:
This PR removes a check that was pulling in a lot of external dependencies. We decided the check was not worth the extra dependencies.
Special notes for your reviewer:
We might want to keep the first part of the check and only delete the second part, but it was easier to delete the whole thing.
Release note: