Hi everyone,
After upgrading my Kubernetes cluster to version 1.32, I’m running into an issue where I’m unable to fetch the OpenAPI v3 schema. The view.kubernetes.io/docs/concepts/overview/kubernetes-api/ mentions that v3 is enabled by default, but when I try to access the endpoint /openapi/v3
, I’m getting a 404
error. Here’s the command I’m running:
curl -X GET https://<cluster-url>/openapi/v3
The error response is:
{
"message": "Not Found",
"status": 404
}
I’ve double-checked the cluster settings, and the Kubernetes API server seems to be running fine. I also confirmed that API v2 is accessible at /openapi/v2
.
Could this be an issue with the API server configuration or something related to API versioning? Any help in troubleshooting this would be appreciated!
Thanks!