-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Fix swagger model of InspectPodResponse
#14377
Fix swagger model of InspectPodResponse
#14377
Conversation
You need to add [NO NEW TESTS NEEDED] |
3faf31a
to
b6aa01b
Compare
@SoMuchForSubtlety could you rebase on current main please? The test failures are nasty flakes fixed in cb76d15. It'll be much easier to rebase & resubmit than for someone to press |
`net.IP` gets marshalled as `string` and not `[]uint8` [NO TESTS NEEDED] [NO NEW TESTS NEEDED] Signed-off-by: Jakob Ahrer <[email protected]>
b6aa01b
to
8c78141
Compare
LGTM |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mheon, SoMuchForSubtlety 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 |
LGTM |
/lgtm |
This PR partially addresses #14160 by fixing one instance of
net.IP
being represented as[]uint8
in the swagger API spec. This fix does not work for the following models, because they contain arrays ofnet.IP
.ContainerNetworkConfig#dns_server
NetOptions#dns_server
NetworkConnectOptions#static_ips
PerNetworkOptions#static_ips
PodNetworkConfig#dns_server
PodSpecGenerator#dns_server
SpecGenerator#dns_server
Does this PR introduce a user-facing change?