Kubectl 描述为入口返回 404



我今天重新安装了我的系统,因为我无法再用kubectl describe访问我的入口,get工作正常并返回预期的入口。

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}

这是库贝特尔版本的结果

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 客户端和服务器时遇到问题。 您需要将 kubectl 客户端降级到 1.12

在 k8s v.15 中,入口是组的一部分,networking.k8s.io之前它在"extensions/v1beta1"组中

入口资源将不再从 v1.19 中的扩展/v1beta1 提供。将使用迁移到 networking.k8s.io/v1beta1 API,从 v1.14 开始提供。现有的持久化数据可以通过 networking.k8s.io/v1beta1 API.k8s CHANGELOG-1.15.md

尝试运行

kubectl get ingress

如果在命名空间中定义了入口,而不是默认,请使用以下内容:

kubectl get ingress -n <NSNAME>

获得入口资源列表后,可以描述使用:

kubectl describe ingress <IngressName> -n <Namespace>

最新更新