-
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
Make serverAddressByClientCIDRs in discovery API optional #61963
Make serverAddressByClientCIDRs in discovery API optional #61963
Conversation
/retest |
/assign @mbohlool |
/retest |
/lgtm /approve |
/test pull-kubernetes-e2e-gce |
We need more of these PRs. There are more properties (mostly lists) that we return null in kubernetes for them and assumption is null is empty. I think you can compile a list of them if you look through python client issues but it would be nice to do a sweep on all arrays/maps in return values in our types and check if they can be null and add optional for them. Thanks for taking care of this @roycaihw |
would like to merge this after swagger-spec gets removed, to avoid confusion /hold |
Since I saw /hold cancel |
@roycaihw I agree. We no longer keep an updated swagger 1.2 spec. It should be removed by our deprecation policy does not allow removing it yet. |
/lgtm |
@@ -799,6 +799,7 @@ type APIGroup struct { | |||
// The server returns only those CIDRs that it thinks that the client can match. | |||
// For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. | |||
// Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP. | |||
// +optional | |||
ServerAddressByClientCIDRs []ServerAddressByClientCIDR `json:"serverAddressByClientCIDRs" protobuf:"bytes,4,rep,name=serverAddressByClientCIDRs"` |
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.
I think the json tag needs the omitempty
.
b913a97
to
a14f423
Compare
@caesarxuchao That's a great point. Updated. Also it seems that |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: caesarxuchao, lavalamp, mbohlool, roycaihw 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 |
/retest Review the full test history for this PR. Silence the bot with an |
1 similar comment
/retest Review the full test history for this PR. Silence the bot with an |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue (batch tested with PRs 61963, 64279, 64130, 64125, 64049). If you want to cherry-pick this change to another branch, please follow the instructions here. |
What this PR does / why we need it:
See #61868
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 #61868
Special notes for your reviewer:
WIP: I'm having trouble updating swagger-spec using our update scripts. Thinking about removing swagger-spec from our code base as it has long passed deprecation. Sending this PR now to see the test results.
Release note:
/sig api-machinery