-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Conversions have kube-isms and are not portable for downstream #25033
Conversions have kube-isms and are not portable for downstream #25033
Conversation
b70bad0
to
c197f33
Compare
func DeepCopy_unversioned_ServerAddressByClientCIDR(in ServerAddressByClientCIDR, out *ServerAddressByClientCIDR, c *conversion.Cloner) error { | ||
out.ClientCIDR = in.ClientCIDR | ||
out.ServerAddress = in.ServerAddress | ||
return nil | ||
} | ||
|
||
func DeepCopy_unversioned_Time(in Time, out *Time, c *conversion.Cloner) 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.
possible problem here?
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.
Function moved later in the file, diff is weird.
This would be nice downstream. |
c197f33
to
902ef28
Compare
LGTM |
902ef28
to
afbfcbf
Compare
lgtm |
@smarterclayton can you rebase pls? (need to pick this for origin->k8s rebase) |
Some minor fixes to enable generators for OpenShift and others who need to generate conversions on Kube API groups outside the core.
We need to break the circular dependency on generation to the scheme.
afbfcbf
to
adf3c38
Compare
GCE e2e build/test passed for commit adf3c38. |
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
GCE e2e build/test passed for commit adf3c38. |
Automatic merge from submit-queue |
Some minor fixes to enable generators for OpenShift and others who need
to generate conversions on Kube API groups outside the core.
@deads2k