Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewMarkControlPlanePhase (0.22 sec)

  1. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    		# Applies control-plane label and taint to a specific node
    		kubeadm init phase mark-control-plane --node-name myNode
    		`)
    )
    
    // NewMarkControlPlanePhase creates a kubeadm workflow phase that implements mark-controlplane checks.
    func NewMarkControlPlanePhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "mark-control-plane",
    		Short:   "Mark a node as a control-plane",
    		Example: markControlPlaneExample,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/init.go

    	initRunner.AppendPhase(phases.NewWaitControlPlanePhase())
    	initRunner.AppendPhase(phases.NewUploadConfigPhase())
    	initRunner.AppendPhase(phases.NewUploadCertsPhase())
    	initRunner.AppendPhase(phases.NewMarkControlPlanePhase())
    	initRunner.AppendPhase(phases.NewBootstrapTokenPhase())
    	initRunner.AppendPhase(phases.NewKubeletFinalizePhase())
    	initRunner.AppendPhase(phases.NewAddonPhase())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top