-
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 componentconfig ClientConnectionConfiguration to k8s.io/apimachinery/pkg/apis/config #66058
Conversation
004c55c
to
3bb8f03
Compare
/hold |
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 for this PR!
Some notes: I'd expect some defaulting funcs for v1alpha1. Also, an OWNERS file should be created as in the KEP.
@rosti FYI |
7eb0a18
to
ccca459
Compare
/test pull-kubernetes-bazel-test |
/hold cancel |
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.
/assign @thockin |
hack/.golint_failures
Outdated
@@ -473,6 +473,7 @@ staging/src/k8s.io/apimachinery/pkg/api/testing/fuzzer | |||
staging/src/k8s.io/apimachinery/pkg/api/testing/roundtrip | |||
staging/src/k8s.io/apimachinery/pkg/api/validation | |||
staging/src/k8s.io/apimachinery/pkg/api/validation/path | |||
staging/src/k8s.io/apimachinery/pkg/apis/config/v1alpha1 |
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.
what does it take to fix golint for that package?
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 of the file register.go in the package
For a move it has surprisingly few removed lines of code. |
Same here: let's create the follow-up PR which uses this. Then we see whether the approach works. Duplicating code before the cleanup at the horizon is not a good idea. /hold |
limitations under the License. | ||
*/ | ||
|
||
package config |
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 the best possible name for this package? Should it be client or clientconfig or something? "config" is REALLY nondescript.
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.
The package is generic and may hold any generic componentconfig type. I think config is the best we can do here. We may always rename later before going beta with the package structure
Can we please get a top-level approval of this to get the ball rolling so we can then cleanup the types (PR #66722) ASAP, and unblock the components' types moving (e.g. #66916). We can always change the structure later if we feel we need to, before going beta with this, but if this is gonna be stuck forever we have no chance improving anything. |
/retest |
This looks like a reasonable first step so approving to get it moving. /approve |
/retest Review the full test history for this PR. Silence the bot with an |
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.
some nil may be need to fix
and rebase auto-generated
commit log. other than LGTM to me
// ClientConnectionConfiguration contains details for constructing a client. | ||
type ClientConnectionConfiguration struct { | ||
// kubeConfigFile is the path to a kubeconfig file. | ||
KubeConfigFile string `json:"kubeconfig"` |
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.
should be Capital ???
The same in others place
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.
this maybe should be kubeConfigFile
, but let's leave this as-is for now.
|
||
// +k8s:deepcopy-gen=package | ||
// +k8s:conversion-gen=k8s.io/apimachinery/pkg/apis/config | ||
// +k8s:defaulter-gen=TypeMeta |
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.
should remove defaulter-gen
?
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.
Maybe, but this is ok for now, follows the pattern for everything else
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.
/lgtm
Thanks @hanxiaoshuai and @jbeda!
kruntime "k8s.io/apimachinery/pkg/runtime" | ||
) | ||
|
||
func addDefaultingFuncs(scheme *kruntime.Scheme) 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.
This is something we will discuss if we're actually gonna do, but for now this is ok
|
||
func SetDefaults_ClientConnectionConfiguration(obj *ClientConnectionConfiguration) { | ||
if len(obj.ContentType) == 0 { | ||
obj.ContentType = "application/vnd.kubernetes.protobuf" |
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.
We might wanna expose these values as constants in the future.
|
||
// +k8s:deepcopy-gen=package | ||
// +k8s:conversion-gen=k8s.io/apimachinery/pkg/apis/config | ||
// +k8s:defaulter-gen=TypeMeta |
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.
Maybe, but this is ok for now, follows the pattern for everything else
// ClientConnectionConfiguration contains details for constructing a client. | ||
type ClientConnectionConfiguration struct { | ||
// kubeConfigFile is the path to a kubeconfig file. | ||
KubeConfigFile string `json:"kubeconfig"` |
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.
this maybe should be kubeConfigFile
, but let's leave this as-is for now.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: hanxiaoshuai, jbeda, luxas 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] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
Automatic merge from submit-queue (batch tested with PRs 67071, 66906, 66722, 67276, 67039). 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>. Remove references to the structs that have moved to their own packages **What this PR does / why we need it**: Follows-up #66058 and #66059 to remove the structs that now aren't needed in `pkg/apis/componentconfig` **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: xref kubernetes/community#2354 **Special notes for your reviewer**: This PR depends on: - [x] #67090 - [x] #67149 - [x] #67159 - [x] #67207 **Only review commit 'Remove references to the structs that have moved to their own packages' please** **Release note**: ```release-note NONE ``` /kind cleanup /assign @sttts @thockin @jbeda @liggitt
What this PR does / why we need it:
ref #2354
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #
Special notes for your reviewer:
ClientConnectionConfiguration now is used by KubeSchedulerConfiguration in pkg/apis/componentconfig, when KubeSchedulerConfiguration is moved to staging, ClientConnectionConfiguration should be cleaned up in pkg/apis/componentconfig.
Release note: