大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本篇内容主要讲解“kubernetes/kubeadm工作流Runner怎么用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“kubernetes/kubeadm工作流Runner怎么用”吧!
温岭网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、响应式网站建设等网站项目制作,到程序开发,运营维护。创新互联成立于2013年到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。
// phaseRunner provides a wrapper to a Phase with the addition of a set // of contextual information derived by the workflow managed by the Runner. // TODO: If we ever decide to get more sophisticated we can swap this type with a well defined dag or tree library. type phaseRunner struct { Phase parent *phaseRunner // 父phaseRunner level int // phase在工作流中的层级 // selfPath contains all the elements of the path that identify the phase into // the workflow managed by the Runner. selfPath []string generatedName string // phase包含各级phase的全名 use string // 使用帮助信息,相当于工作流中的相对路径 }
type RunnerOptions struct { FilterPhases []string // 需要执行的phase列表,如果列表为空,则全部执行 SkipPhases []string // 需要屏蔽的phase,如果列表为空,则不屏蔽 }
// Runner implements management of composable kubeadm workflows. type Runner struct { Options RunnerOptions // Runner执行选项 Phases []Phase // Runner管理的工作流中所有的phase runDataInitializer func(*cobra.Command, []string) (RunData, error) // 构造工作流中所有phase共享数据的回调函数 runData RunData // 工作流中所有phase共享的数据 runCmd *cobra.Command // 触发Runner的命令 // cmdAdditionalFlags holds additional, shared flags that could be added to the subcommands generated // for phases. Flags could be inherited from the parent command too or added directly to each phase cmdAdditionalFlags *pflag.FlagSet phaseRunners []*phaseRunner // 工作流的上下文信息 }
工作流workflow
包对外提供一个创建空Runner的方法NewRunner()
,该空Runner实际上也是一个空的工作流,它不包括任何phase
,后续可以使用添加phase
的接口来增加phase
。
func NewRunner() *Runner { return &Runner{ Phases: []Phase{}, } }
当工作流创建完成后,就可以使用func (e *Runner) AppendPhase(t Phase)
接口来添加phase
了。
func (e *Runner) AppendPhase(t Phase) { e.Phases = append(e.Phases, t) }
此时添加phase,只是简单的把phase追加到runner的切片列表中,phase的执行顺序与加入顺序一致。
到此,相信大家对“kubernetes/kubeadm工作流Runner怎么用”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!