发布一个k8s部署视频:https://edu.csdn.net/course/detail/26967
课程内容:各种k8s部署方式。包括minikube部署,kubeadm部署,kubeasz部署,rancher部署,k3s部署。包括开发测试环境部署k8s,和生产环境部署k8s。
腾讯课堂连接地址https://ke.qq.com/course/478827?taid=4373109931462251&tuin=ba64518
第二个视频发布 https://edu.csdn.net/course/detail/27109
腾讯课堂连接地址https://ke.qq.com/course/484107?tuin=ba64518
介绍主要的k8s资源的使用配置和命令。包括configmap,pod,service,replicaset,namespace,deployment,daemonset,ingress,pv,pvc,sc,role,rolebinding,clusterrole,clusterrolebinding,secret,serviceaccount,statefulset,job,cronjob,podDisruptionbudget,podSecurityPolicy,networkPolicy,resourceQuota,limitrange,endpoint,event,conponentstatus,node,apiservice,controllerRevision等。
第三个视频发布:https://edu.csdn.net/course/detail/27574
详细介绍helm命令,学习helm chart语法,编写helm chart。深入分析各项目源码,学习编写helm插件
第四个课程发布:https://edu.csdn.net/course/detail/28488
本课程将详细介绍k8s所有命令,以及命令的go源码分析,学习知其然,知其所以然
————————————————
type useContextOptions struct {// use-context结构体
configAccess clientcmd.ConfigAccess
contextName string
}
//创建use-context命令
func NewCmdConfigUseContext(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command {
options := &useContextOptions{configAccess: configAccess}//初始化结构体
cmd := &cobra.Command{//创建cobra命令
Use: "use-context CONTEXT_NAME",
DisableFlagsInUseLine: true,
Short: i18n.T("Sets the current-context in a kubeconfig file"),
Aliases: []string{"use"},
Long: `Sets the current-context in a kubeconfig file`,
Example: useContextExample,
Run: func(cmd *cobra.Command, args []string) {
cmdutil.CheckErr(options.complete(cmd))//准备
cmdutil.CheckErr(options.run())//运行
fmt.Fprintf(out, "Switched to context %q.\n", options.contextName)//打印结果
},
}
return cmd
}
func (o *useContextOptions) complete(cmd *cobra.Command) error {//准备
endingArgs := cmd.Flags().Args()//获取参数
if len(endingArgs) != 1 {//参数必须是1个
return helpErrorf(cmd, "Unexpected args: %v", endingArgs)
}
o.contextName = endingArgs[0]//设置contextName
return nil
}
func (o useContextOptions) validate(config *clientcmdapi.Config) error {//校验
if len(o.contextName) == 0 {//contextName不能为空
return errors.New("empty context names are not allowed")
}
for name := range config.Contexts {
if name == o.contextName {//context必须存在
return nil
}
}
return fmt.Errorf("no context exists with the name: %q", o.contextName)
}
func (o useContextOptions) run() error {//运行
config, err := o.configAccess.GetStartingConfig()加载config
if err != nil {
return err
}
err = o.validate(config)// 校验
if err != nil {
return err
}
config.CurrentContext = o.contextName//设置currentContext
return clientcmd.ModifyConfig(o.configAccess, *config, true)//把配置写回文件
}
来源:oschina
链接:https://my.oschina.net/u/4349018/blog/4331503