当前位置 : 主页 > 编程语言 > java >

kubectl源码分析之config current-context

来源:互联网 收集:自由互联 发布时间:2022-08-15
欢迎关注我的公众号: 目前刚开始写一个月,一共写了18篇原创文章,文章目录如下: ​​istio多集群探秘,部署了50次多集群后我得出的结论​​ ​​istio多集群链路追踪,附实操视


 欢迎关注我的公众号:

kubectl源码分析之config current-context_公众号

 目前刚开始写一个月,一共写了18篇原创文章,文章目录如下:

​​istio多集群探秘,部署了50次多集群后我得出的结论​​

​​istio多集群链路追踪,附实操视频​​

​​istio防故障利器,你知道几个,istio新手不要读,太难!​​

​​istio业务权限控制,原来可以这么玩​​

​​istio实现非侵入压缩,微服务之间如何实现压缩​​

​​不懂envoyfilter也敢说精通istio系列-http-rbac-不要只会用AuthorizationPolicy配置权限​​

​​不懂envoyfilter也敢说精通istio系列-02-http-corsFilter-不要只会vs​​

​​不懂envoyfilter也敢说精通istio系列-03-http-csrf filter-再也不用再代码里写csrf逻辑了​​

​​不懂envoyfilter也敢说精通istio系列http-jwt_authn-不要只会RequestAuthorization​​

​​不懂envoyfilter也敢说精通istio系列-05-fault-filter-故障注入不止是vs​​

​​不懂envoyfilter也敢说精通istio系列-06-http-match-配置路由不只是vs​​

​​不懂envoyfilter也敢说精通istio系列-07-负载均衡配置不止是dr​​

​​不懂envoyfilter也敢说精通istio系列-08-连接池和断路器​​

​​不懂envoyfilter也敢说精通istio系列-09-http-route filter​​

​​不懂envoyfilter也敢说精通istio系列-network filter-redis proxy​​

​​不懂envoyfilter也敢说精通istio系列-network filter-HttpConnectionManager​​

​​不懂envoyfilter也敢说精通istio系列-ratelimit-istio ratelimit完全手册​​

 

———————————————

type CurrentContextOptions struct {//current-context结构体
ConfigAccess clientcmd.ConfigAccess
}//创建current-context命令
func NewCmdConfigCurrentContext(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command {
options := &CurrentContextOptions{ConfigAccess: configAccess}//初始化结构体

cmd := &cobra.Command{//创建cobra命令
Use: "current-context",
Short: i18n.T("Displays the current-context"),
Long: currentContextLong,
Example: currentContextExample,
Run: func(cmd *cobra.Command, args []string) {
cmdutil.CheckErr(RunCurrentContext(out, options))//运行
},
}

return cmd
}//运行
func RunCurrentContext(out io.Writer, options *CurrentContextOptions) error {
config, err := options.ConfigAccess.GetStartingConfig()//加载config
if err != nil {
return err
}

if config.CurrentContext == "" {// 如果currentContext为空则报错
err = fmt.Errorf("current-context is not set")
return err
}

fmt.Fprintf(out, "%s\n", config.CurrentContext)//打印currentContext
return nil
}
网友评论