共计 2151 个字符,预计需要花费 6 分钟才能阅读完成。
kubernetes 及 kubeadm 工作流的 Phase 数据结构是怎样的,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
Phase 即工作流中的阶段或步骤。创建一个 Phase 只需要实例化一个 Phase struct 类型的变量即可。
Phase 定义了某个步骤及该步骤下所采取的动作。
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 可以包含子 phase
通过 phase 的方法 func (t *Phase) AppendPhase(phase Phase) 可以把一个 phase 加入到另一个 phase 中,从而成为其子 phase。
一个 phase 的子 phase 存放于 Phase.Phases 的切片中,而且是按照添加的顺序排列的,这也是子 phase 被执行的顺序。
一个 phase 的子 phase 在其父 phase 执行后会立即执行。
关于 kubernetes 及 kubeadm 工作流的 Phase 数据结构是怎样的问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注丸趣 TV 行业资讯频道了解更多相关知识。