溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

kubernetes/kubeadm工作流Runner怎么用

發(fā)布時間:2022-01-07 15:26:10 來源:億速云 閱讀:143 作者:iii 欄目:云計算

本篇內(nèi)容主要講解“kubernetes/kubeadm工作流Runner怎么用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“kubernetes/kubeadm工作流Runner怎么用”吧!

phaseRunner

// 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 // 使用幫助信息,相當(dāng)于工作流中的相對路徑
}

Runner

type RunnerOptions struct {
	FilterPhases []string // 需要執(zhí)行的phase列表,如果列表為空,則全部執(zhí)行

	SkipPhases []string // 需要屏蔽的phase,如果列表為空,則不屏蔽
}
// Runner implements management of composable kubeadm workflows.
type Runner struct {
	Options RunnerOptions // Runner執(zhí)行選項

	Phases []Phase // Runner管理的工作流中所有的phase

	runDataInitializer func(*cobra.Command, []string) (RunData, error) // 構(gòu)造工作流中所有phase共享數(shù)據(jù)的回調(diào)函數(shù)

	runData RunData // 工作流中所有phase共享的數(shù)據(jù)

	runCmd *cobra.Command // 觸發(fā)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 // 工作流的上下文信息
}

Runner對外方法

創(chuàng)建Runner

工作流workflow包對外提供一個創(chuàng)建空Runner的方法NewRunner(),該空Runner實(shí)際上也是一個空的工作流,它不包括任何phase,后續(xù)可以使用添加phase的接口來增加phase。

func NewRunner() *Runner {
	return &Runner{
		Phases: []Phase{},
	}
}
加入phase

當(dāng)工作流創(chuàng)建完成后,就可以使用func (e *Runner) AppendPhase(t Phase)接口來添加phase了。

func (e *Runner) AppendPhase(t Phase) {
	e.Phases = append(e.Phases, t)
}

此時添加phase,只是簡單的把phase追加到runner的切片列表中,phase的執(zhí)行順序與加入順序一致。

到此,相信大家對“kubernetes/kubeadm工作流Runner怎么用”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI