35 Star 389 Fork 70

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
crd.go 634 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dan Ramich 提交于 2019-06-12 13:38 . goimport linting changes
package clusterauthtoken
import (
"context"
"github.com/rancher/norman/store/crd"
clusterSchema "github.com/rancher/types/apis/cluster.cattle.io/v3/schema"
client "github.com/rancher/types/client/cluster/v3"
"github.com/rancher/types/config"
)
func CRDSetup(ctx context.Context, apiContext *config.UserOnlyContext) error {
factory, err := crd.NewFactoryFromClient(apiContext.RESTConfig)
if err != nil {
return err
}
factory.BatchCreateCRDs(ctx, config.UserStorageContext, apiContext.Schemas, &clusterSchema.Version,
client.ClusterAuthTokenType,
client.ClusterUserAttributeType,
)
factory.BatchWait()
return nil
}
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.13

搜索帮助