第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

k8s滾動(dòng)更新算法

k8s滾動(dòng)更新算法

Go
拉莫斯之舞 2022-11-23 19:18:51
我們已經(jīng)創(chuàng)建了自己的自定義資源,也就是 CRD,我們需要添加對(duì)滾動(dòng)更新的支持,因?yàn)?K8s 支持它用于部署等我們想重用這樣的邏輯,是否有任何我們可以使用(可能部分)的庫支持嗎?或者也許學(xué)習(xí)并遵循邏輯,因?yàn)槲覀儾幌胫匦掳l(fā)明輪子?任何參考/lib 都會(huì)有所幫助。我在這里很難找到這個(gè)。
查看完整描述

1 回答

?
慕萊塢森

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊

發(fā)布社區(qū) wiki 答案以總結(jié)問題。

Clark McCauley很好地建議:

您可能正在尋找此處包含的邏輯。

這是對(duì) k8s 源代碼的引用,因此您可能找不到更好的想法來源:)

// rolloutRolling implements the logic for rolling a new replica set.

func (dc *DeploymentController) rolloutRolling(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet) error {

    newRS, oldRSs, err := dc.getAllReplicaSetsAndSyncRevision(ctx, d, rsList, true)

    if err != nil {

        return err

    }

    allRSs := append(oldRSs, newRS)


    // Scale up, if we can.

    scaledUp, err := dc.reconcileNewReplicaSet(ctx, allRSs, newRS, d)

    if err != nil {

        return err

    }

    if scaledUp {

        // Update DeploymentStatus

        return dc.syncRolloutStatus(ctx, allRSs, newRS, d)

    }


    // Scale down, if we can.

    scaledDown, err := dc.reconcileOldReplicaSets(ctx, allRSs, controller.FilterActiveReplicaSets(oldRSs), newRS, d)

    if err != nil {

        return err

    }

    if scaledDown {

        // Update DeploymentStatus

        return dc.syncRolloutStatus(ctx, allRSs, newRS, d)

    }


    if deploymentutil.DeploymentComplete(d, &d.Status) {

        if err := dc.cleanupDeployment(ctx, oldRSs, d); err != nil {

            return err

        }

    }


    // Sync deployment status

    return dc.syncRolloutStatus(ctx, allRSs, newRS, d)

}


查看完整回答
反對(duì) 回復(fù) 2022-11-23
  • 1 回答
  • 0 關(guān)注
  • 116 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)