-
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
Find home for utils used by kubectl #48209
Comments
Seems reasonable to stepwise move.
I don't want to bikeshed too long on getting kubectl out of tree either
On Jun 28, 2017, at 11:43 AM, Phillip Wittrock <[email protected]> wrote:
cc @apelisse <https://github.com/apelisse> @monopole
<https://github.com/monopole>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#48209 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABG_p8757MiObz36LtfQas6Ob0ao6pQoks5sInSmgaJpZM4OIJ4Y>
.
|
I am not in favor of apimachinery becoming a dumping ground for these, even temporarily. We already got consensus on this a while back in an email thread on kubernetes-dev, I will try to dig it up. |
Some of these are only used by
I don't want single use utils dropped into a repo like apimachinery. |
Please look at this email thread: https://groups.google.com/d/msg/kubernetes-dev/jvmDxc29BOw/UElLJhQtBgAJ |
cc @kubernetes/sig-cli-maintainers |
@deads2k I am good with moving utils only consumed by kubectl under pkg/kubectl/util. What about the others? What is the plan for things used by printers? IIUC, the printer libraries were moved out of kubectl for server-side printing, so things used by the printer libraries can't live in kubectl. |
I think those are more artifacts of our how our API server handles requests than code that is related to the type structure, serialization, and conversion. I don't think they belong in apimachinery either. The mostly likely bit of code you'll want to share (the printer and describe impls themselves for compatibility with older servers) definitely doesn't belong in apimachinery since it is type specific. |
@brendanburns Can we move
@deads2k kubefed and test/e2e/e2e.go also depend on this. Can we move it to client-go? |
I'm so looking forward to tens of shared repos.
Printers in the near term are shared, but only depend on apis.
|
Those two can depend on kubectl |
I think the ideal state is that I'm less concerned about whether it has a single user, though obviously more is better. |
and maintain backward compatibility. |
Any changes in API would have to be pre-factored before moving it out.
Once we move it out, APIs are basically done.
…On Fri, Jun 30, 2017 at 9:07 AM, Antoine Pelisse ***@***.***> wrote:
I think the ideal state is that k8s.io/util/* holds a set of libs that
are really plausibly generic, well tested, well factored, and meet some
minimum complexity bar
and maintain backward compatibility.
—
You are receiving this because you were assigned.
Reply to this email directly, view it on GitHub
<#48209 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFVgVEYdjbdA61eayrWLSYfuWESnXyWQks5sJR1GgaJpZM4OIJ4Y>
.
|
Automatic merge from submit-queue (batch tested with PRs 48295, 48298, 47339, 44910, 48037) eliminate kubectl dependency on k8s.io/kubernetes/pkg/util Ref: #48209 /assign @apelisse @monopole cc: @pwittrock ```release-note NONE ```
Automatic merge from submit-queue (batch tested with PRs 48295, 48298, 47339, 44910, 48037) move crlf to kubectl/util move crlf from pkg/util/crlf to pkg/kubectl/util/crlf Ref: #48209 ```release-note NONE ``` /assign @apelisse @monopole cc: @pwittrock
Automatic merge from submit-queue (batch tested with PRs 47918, 47964, 48151, 47881, 48299) move term to kubectl/util move term from pkg/util/term to pkg/kubectl/util/term remove dependency of `k8s.io/kubernetes/pkg/util/term` for `pkg/kubelet/dockershim/exec.go` and `pkg/kubelet/dockershim/exec.go` Ref: #48209 ```release-note NONE ``` /assign @apelisse @monopole cc: @pwittrock
Automatic merge from submit-queue split util/slice for kubectl Split util/slice to remove the dependency of kubectl on `k8s.io/kubernetes/pkg/util/slice`. ```release-note NONE ``` /assign @apelisse @monopole cc: @pwittrock ref #48209
cc @monopole |
/remove-lifecycle stale |
Automatic merge from submit-queue (batch tested with PRs 49107, 47177, 49234, 49224, 49227) Move util/exec to vendor Move util/exec to vendor. Update import paths. Update godep Part of kubernetes#48209 Associate PR against `k8s.io/utils` repo: kubernetes/utils#5 ```release-note NONE ``` /assign @apelisse
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Rotten issues close after 30d of inactivity. Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Can we remove this permanently from lifecycling? |
/lifecycle frozen |
k8s.io/kubernetes/pkg/util/term should be removed since no package refers it any more. |
@mengqiy hello, do we have any new progress about this? I am especially concerned about |
/reopen |
@mengqiy: Reopening this issue. In response to this:
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. |
@juanvallejo knows the answer best :) |
There is currently a kubernetes/utils repo for any non-kube-specific utils. As for the printers package, it does not need to move anywhere. That package is used by the server to generate a Table response for server-side printing. Since there are some code-paths in kubectl that still rely on this package as well, we have discussed a few options:
Any printer-flag related files outside of the |
@seans3 Has this been resolved by moving kubectl into staging? |
/area code-organization |
@pwittrock can you please reopen if needed? /close |
@dims: Closing this issue. In response to this:
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. |
Kubectl depends on several util libraries, and they need to be moved out of the k/kubernetes repo for kubectl to move out without vendoring k/kubernetes. We are blocked on making progress on this until we have a home for the utils.
@bgrant0607 @lavalamp @smarterclayton @thockin @deads2k @liggitt Would love to get your perspective.
Move to api-machinery first. Eventually move all utils in api-machinery to another repo.
Move to another util repo
List of util packages:
The text was updated successfully, but these errors were encountered: