-
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
Dynamic RuntimeClass implementation #67909
Dynamic RuntimeClass implementation #67909
Conversation
func NewController(client dynamic.Interface) *Controller { | ||
rc := client.Resource(runtimeClassGVR) | ||
lw := &cache.ListWatch{ | ||
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { |
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 is the wrapper needed?
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.
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 @@ | |||
/* |
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.
Is this file redundant?
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.
Oops, forgot to delete it when I renamed it.
56658e6
to
4085a1a
Compare
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.
Thanks Chao.
@@ -0,0 +1,89 @@ | |||
/* |
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.
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) { |
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.
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.
5016628
to
8bb4318
Compare
Ready for review. /assign @yujuhong |
8bb4318
to
d5dafae
Compare
d5dafae
to
3cd360d
Compare
Fixed golint & rebased. |
/assign @Random-Liu |
Shoot, it looks like I pushed an old version by mistake. Will ping once resolved. |
3cd360d
to
00d1f15
Compare
Actually it was just a bad rebase. Fixed. PTAL |
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.
cmd/kubelet/app/server.go
Outdated
@@ -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) |
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.
It seems that we use Warningf
for the other clients.
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.
Done.
Thanks @Random-Liu I also hope that |
dd5b4dd
to
12fcd4a
Compare
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. |
/lgtm Please rebase it. We are good to go. |
fe37c71
to
63f3bc1
Compare
squashed, rebased, and fixed dockershim error message |
/lgtm |
[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 |
Not sure where to ask this question so asking here. Why RuntimeClass is passed to CRI and not handled by kubelet only? |
Bumping to priority to enable merging. This was in the queue prior to freeze. |
@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. |
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. |
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
/sig node
/kind feature
/priority important-soon
/milestone v1.12