Skip to content
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

Dynamic RuntimeClass implementation #67909

Merged
merged 1 commit into from
Sep 5, 2018

Conversation

tallclair
Copy link
Member

What this PR does / why we need it:

Implement RuntimeClass using the dynamic client to break the dependency on #67791

Once (if) #67791 merges, I will migrate to the typed client.

Which issue(s) this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged):
For kubernetes/enhancements#585

Release note:
Covered by #67737

NONE

/sig node
/kind feature
/priority important-soon
/milestone v1.12

@k8s-ci-robot k8s-ci-robot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. release-note-none Denotes a PR that doesn't merit a release note. sig/node Categorizes an issue or PR as relevant to SIG Node. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Aug 27, 2018
@k8s-ci-robot k8s-ci-robot added this to the v1.12 milestone Aug 27, 2018
@k8s-ci-robot k8s-ci-robot added kind/feature Categorizes issue or PR as related to a new feature. priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. labels Aug 27, 2018
@k8s-ci-robot k8s-ci-robot requested review from pmorie and vishh August 27, 2018 20:17
func NewController(client dynamic.Interface) *Controller {
rc := client.Resource(runtimeClassGVR)
lw := &cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is the wrapper needed?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because ListFunc is type func(options metav1.ListOptions) (runtime.Object, error), but rc.List is type List(opts metav1.ListOptions) (*unstructured.UnstructuredList, error)

Even though *unstructured.UnstructuredList implements runtime.Object, go doesn't do the conversion in function signatures.

@@ -0,0 +1,89 @@
/*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this file redundant?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, forgot to delete it when I renamed it.

@tallclair tallclair force-pushed the runtimeclass-kubelet branch from 56658e6 to 4085a1a Compare August 27, 2018 23:40
Copy link
Member Author

@tallclair tallclair left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Chao.

@@ -0,0 +1,89 @@
/*
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, forgot to delete it when I renamed it.

func NewController(client dynamic.Interface) *Controller {
rc := client.Resource(runtimeClassGVR)
lw := &cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because ListFunc is type func(options metav1.ListOptions) (runtime.Object, error), but rc.List is type List(opts metav1.ListOptions) (*unstructured.UnstructuredList, error)

Even though *unstructured.UnstructuredList implements runtime.Object, go doesn't do the conversion in function signatures.

@tallclair tallclair force-pushed the runtimeclass-kubelet branch 2 times, most recently from 5016628 to 8bb4318 Compare August 28, 2018 00:05
@tallclair tallclair changed the title [WIP] dynamic RuntimeClass implementation Dynamic RuntimeClass implementation Aug 28, 2018
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Aug 28, 2018
@tallclair
Copy link
Member Author

Ready for review.

/assign @yujuhong
/cc @dchen1107 @caesarxuchao @Random-Liu

@tallclair
Copy link
Member Author

/cc @saad-ali @jsafrane
If you find yourselves blocked by getting k8s.io/csi-api checked in, this is an alternative approach (see pkg/kubelet/runtimeclass/runtimeclass_manager.go)

@tallclair tallclair force-pushed the runtimeclass-kubelet branch from 8bb4318 to d5dafae Compare August 29, 2018 05:38
@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Aug 29, 2018
@tallclair tallclair force-pushed the runtimeclass-kubelet branch from d5dafae to 3cd360d Compare August 29, 2018 05:40
@k8s-ci-robot k8s-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Aug 29, 2018
@tallclair
Copy link
Member Author

Fixed golint & rebased.

@tallclair
Copy link
Member Author

/assign @Random-Liu

@tallclair
Copy link
Member Author

Shoot, it looks like I pushed an old version by mistake. Will ping once resolved.

@tallclair tallclair force-pushed the runtimeclass-kubelet branch from 3cd360d to 00d1f15 Compare August 30, 2018 19:56
@tallclair
Copy link
Member Author

Actually it was just a bad rebase. Fixed. PTAL

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Sep 1, 2018
Copy link
Member

@Random-Liu Random-Liu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM overall.

Based on #67009, dockershim doesn't support kata now even with runtime handler.

We may want to get the ip cache thing in as well, or not support runtime handler in dockershim at all and return error.

Also /cc @miaoyq

@@ -581,6 +584,10 @@ func run(s *options.KubeletServer, kubeDeps *kubelet.Dependencies, stopCh <-chan
clientCertificateManager.SetCertificateSigningRequestClient(kubeClient.CertificatesV1beta1().CertificateSigningRequests())
clientCertificateManager.Start()
}
dynamicKubeClient, err = dynamic.NewForConfig(clientConfig)
if err != nil {
glog.Errorf("Failed to initialize dynamic KubeClient: %v", err)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that we use Warningf for the other clients.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

@miaoyq
Copy link

miaoyq commented Sep 4, 2018

Thanks @Random-Liu
The motivation of this feature is to provide a way to select between different oci runtimes.
So dockershim, as the default CRI implementation for k8s, should support this feature IMO.

I also hope that dockershim can support this feature. :-)

@tallclair tallclair force-pushed the runtimeclass-kubelet branch from dd5b4dd to 12fcd4a Compare September 4, 2018 18:20
@k8s-ci-robot k8s-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Sep 4, 2018
@tallclair
Copy link
Member Author

On further consideration, I think the dockershim support should be split out to a separate PR. I reverted the changes and added an explicit error for the non-empty handler.

The problem with the original approach is that the RuntimeHandler is treated as a binary to call (without arguments). However, there is no way to specify the path of the binary, so it must be in the system path already. This may be OK, but still deserves its own discussion.

@dchen1107
Copy link
Member

/lgtm

Please rebase it. We are good to go.

@k8s-ci-robot k8s-ci-robot added lgtm "Looks good to me", indicates that a PR is ready to be merged. approved Indicates a PR has been approved by an approver from all required OWNERS files. labels Sep 4, 2018
@tallclair tallclair force-pushed the runtimeclass-kubelet branch from fe37c71 to 63f3bc1 Compare September 4, 2018 20:45
@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Sep 4, 2018
@tallclair
Copy link
Member Author

squashed, rebased, and fixed dockershim error message

@dchen1107
Copy link
Member

/lgtm
/approve

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Sep 4, 2018
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: dchen1107, tallclair

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@lukaszo
Copy link
Contributor

lukaszo commented Sep 5, 2018

Not sure where to ask this question so asking here. Why RuntimeClass is passed to CRI and not handled by kubelet only?

@tallclair
Copy link
Member Author

Bumping to priority to enable merging. This was in the queue prior to freeze.
/priority critical-urgent

@k8s-ci-robot k8s-ci-robot added the priority/critical-urgent Highest priority. Must be actively worked on as someone's top priority right now. label Sep 5, 2018
@tallclair
Copy link
Member Author

@lukaszo The runtime handler selects the configuration the CRI implementation should use. There is still only a single CRI server that the kubelet talks to. As we add more features to RuntimeClass (e.g. pod overhead, scheduling & discovery, supported features, etc.) the Kubelet will do more of the work.

@k8s-github-robot
Copy link

Automatic merge from submit-queue (batch tested with PRs 68161, 68023, 67909, 67955, 67731). If you want to cherry-pick this change to another branch, please follow the instructions here: https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md.

@k8s-github-robot k8s-github-robot merged commit 0df5d8d into kubernetes:master Sep 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. area/kubelet cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/feature Categorizes issue or PR as related to a new feature. lgtm "Looks good to me", indicates that a PR is ready to be merged. priority/critical-urgent Highest priority. Must be actively worked on as someone's top priority right now. priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. release-note-none Denotes a PR that doesn't merit a release note. sig/node Categorizes an issue or PR as relevant to SIG Node. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants