代码拉取完成,页面将自动刷新
package k8slookup
import (
"net/http"
"github.com/rancher/norman/api/access"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/clusterrouter"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/apis/management.cattle.io/v3/schema"
"github.com/rancher/types/client/management/v3"
"github.com/rancher/types/config"
)
func New(context *config.ScaledContext, validate bool) clusterrouter.ClusterLookup {
return &lookup{
clusterLister: context.Management.Clusters("").Controller().Lister(),
schemas: context.Schemas,
validate: validate,
}
}
type lookup struct {
clusterLister v3.ClusterLister
schemas *types.Schemas
validate bool
}
func (l *lookup) Lookup(req *http.Request) (*v3.Cluster, error) {
apiContext := types.NewAPIContext(req, nil, l.schemas)
clusterID := clusterrouter.GetClusterID(req)
if clusterID == "" {
return nil, httperror.NewAPIError(httperror.NotFound, "failed to find cluster")
}
if l.validate {
// check access
if err := access.ByID(apiContext, &schema.Version, client.ClusterType, clusterID, &client.Cluster{}); err != nil {
return nil, err
}
}
return l.clusterLister.Get("", clusterID)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。