【发布时间】:2019-07-10 12:37:14
【问题描述】:
我今天重新安装了我的系统,因为我无法再使用kubectl describe 访问我的 Ingress,get 工作正常并返回预期的 Ingress。
kubectl describe ingresses
Error from server (NotFound): the server could not find the requested resource
这是我在运行describe 和-v 8 时得到的响应
GET host:443/apis/networking.k8s.io/v1beta1/namespaces/default/ingresses/ingress-rule
Request Headers:
Authorization: Bearer TOKEN
Accept: application/json, */*
User-Agent: kubectl/v1.15.0 (linux/amd64) kubernetes/e8462b5
Response Status: 404 Not Found in 14 milliseconds
Response Headers:
Content-Type: application/json
Content-Length: 174
Date: Wed, 10 Jul 2019 12:30:05 GMT
Response Body: {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"the server could not find the requested resource","reason":"NotFound","details":{},"code":404}
这是 kubectl 版本结果
Client Version: version.Info{Major:"1", Minor:"15", GitVersion:"v1.15.0", GitCommit:"e8462b5b5dc2584fdcd18e6bcfe9f1e4d970a529", GitTreeState:"clean", BuildDate:"2019-06-19T16:40:16Z", GoVersion:"go1.12.5", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"12", GitVersion:"v1.12.7", GitCommit:"6f482974b76db3f1e0f5d24605a9d1d38fad9a2b", GitTreeState:"clean", BuildDate:"2019-03-25T02:41:57Z", GoVersion:"go1.10.8", Compiler:"gc", Platform:"linux/amd64"}
【问题讨论】:
-
嗨,你能不能运行
kubectl version希望客户端和服务器都没有兼容性问题 -
嗨 @Joachim,降级 kubectl 解决了您的问题吗?
标签: kubernetes kubectl kubernetes-ingress