Brendan Burns
Brendan Burns
500 indicates some sort of unexpected server problem, not a permission problem. 500s should never happen, you will need to check the logs on the API server to get more...
That's the Java (client) stack trace. We need the logs from the Kubernetes API Server (e.g. the go binary that implements the Kubernetes Server side) And yes, the API works...
I don't think that this is a bug in the client. If you look at the place where the exception was thrown: https://github.com/kubernetes-client/java/blob/master/kubernetes/src/main/java/io/kubernetes/client/openapi/ApiClient.java#L973 It is setting `response.message()` to be the...
fwiw, the `message` field in the Status response is unrelated to the message that is passed to the exception. The message passed to the `ApiException` is an [`okhttp.Response.message`](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-response/message/) so I...
/lgtm /approve
@mbohlool fyi, looks like we should update the version of the generator that we use...
/lifecycle frozen
@dependabot rebase
Yeah, that's a bug. We'd happily take a PR with the fix or we'll get to it eventually.
@yue9944882 updated per your comment. Please take another look. Once this looks good, I can add tests.