kubernetes及kubeadm工作流的Phase数据结构是怎样的,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
为洮南等地区用户提供了全套网页设计制作服务,及洮南网站建设行业解决方案。主营业务为网站制作、网站建设、洮南网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
Phase
即工作流中的阶段或步骤。创建一个Phase
只需要实例化一个Phase struct
类型的变量即可。
Phase
定义了某个步骤及该步骤下所采取的动作。
Phase
数据结构定义位于kubernetes\cmd\kubeadm\app\cmd\phases\workflow\phase.go
。
type Phase struct { Name string // phase的名字,同一个workflow下的phase或同一个父phase下的子phase名字也必须唯一 Aliases []string // phase的别名,可以有多个 Short string // phase的简短介绍 Long string // phase的介绍 Example string // 使用示例,类似于help信息 Hidden bool // 该phase是否需要在工作流帮助信息中隐藏 Phases []Phase // 子phase,有序排列 // RunAllSiblings allows to assign to a phase the responsibility to // run all the sibling phases // Nb. phase marked as RunAllSiblings can not have Run functions RunAllSiblings bool Run func(data RunData) error // phase的回调函数 RunIf func(data RunData) (bool, error) // 条件检测回调函数,在Run之前调用,决定是否要继续调用Run,如果RunIf返回(true,nil),那么Run将会被执行,否则不执行 // InheritFlags defines the list of flags that the cobra command generated for this phase should Inherit // from local flags defined in the parent command / or additional flags defined in the phase runner. // If the values is not set or empty, no flags will be assigned to the command // Nb. global flags are automatically inherited by nested cobra command InheritFlags []string // LocalFlags defines the list of flags that should be assigned to the cobra command generated // for this phase. // Nb. if two or phases have the same local flags, please consider using local flags in the parent command // or additional flags defined in the phase runner. LocalFlags *pflag.FlagSet // ArgsValidator defines the positional arg function to be used for validating args for this phase // If not set a phase will adopt the args of the top level command. ArgsValidator cobra.PositionalArgs }
Phase
只提供一个方法用于添加子Phase
,这也意味着一旦创建它,其属性一般就不会修改,可以动态的添加子Phase
。
func (t *Phase) AppendPhase(phase Phase) { t.Phases = append(t.Phases, phase) }
通过phase
的方法func (t *Phase) AppendPhase(phase Phase)
可以把一个phase
加入到另一个phase中,从而成为其子phase。
一个phase
的子phase存放于Phase.Phases
的切片中,而且是按照添加的顺序排列的,这也是子phase被执行的顺序。
一个phase
的子phase在其父phase
执行后会立即执行。
关于kubernetes及kubeadm工作流的Phase数据结构是怎样的问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。
售后响应及时
7×24小时客服热线数据备份
更安全、更高效、更稳定价格公道精准
项目经理精准报价不弄虚作假合作无风险
重合同讲信誉,无效全额退款