-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
move config flags to pkg/kubectl/genericclioptions #63514
move config flags to pkg/kubectl/genericclioptions #63514
Conversation
2320dc7
to
1147e9c
Compare
8ce3cab
to
e66a08b
Compare
81bb22b
to
1485d58
Compare
1485d58
to
56bfafd
Compare
8713f20
to
99660a5
Compare
@@ -274,8 +274,15 @@ func NewKubectlCommand(in io.Reader, out, err io.Writer) *cobra.Command { | |||
BashCompletionFunction: bashCompletionFunc, | |||
} | |||
|
|||
kubeConfigFlags := cmdutil.NewConfigFlags() |
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.
why did this have to change?
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 was setting the "normalize" functions within the ConfigFlags#AddFlags method before. This was bringing in an additional dependency "k8s.io/apiserver/pkg/util/flag"
to genericclioptions. Rather than do that, I moved the normalize functions here instead.
/approve /hold holding pending the answer to my question, but it looks good. |
/hold cancel rebase |
99660a5
to
2ff780d
Compare
2ff780d
to
876629f
Compare
@deads2k rebased |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, juanvallejo 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 pull-kubernetes-kubemark-e2e-gce |
1 similar comment
/test pull-kubernetes-kubemark-e2e-gce |
/test pull-kubernetes-e2e-gce |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
@juanvallejo: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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/test-infra repository. I understand the commands that are listed here. |
Release note:
Moves ConfigFlags to
pkg/kubectl/genericclioptions
Depends on #63550cc @soltysh @deads2k