Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for SkipPhases (0.3 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	// The certificate key is a hex encoded string that is an AES key of size 32 bytes.
    	CertificateKey string
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	SkipPhases []string
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// +optional
    	CertificateKey string `json:"certificateKey,omitempty"`
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	// +optional
    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.BootstrapTokens = []bootstraptokenv1.BootstrapToken{
    		{
    			Groups: []string{"foo"},
    			Usages: []string{"foo"},
    			TTL:    &metav1.Duration{Duration: 1234},
    		},
    	}
    	obj.SkipPhases = nil
    	obj.NodeRegistration.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.NodeRegistration.ImagePullSerial = ptr.To(true)
    	obj.Patches = nil
    	obj.DryRun = false
    	kubeadm.SetDefaultTimeouts(&obj.Timeouts)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/reset.go

    		if err != nil {
    			return nil, err
    		}
    		// If the flag for skipping phases was empty, use the values from config
    		if len(resetRunner.Options.SkipPhases) == 0 {
    			resetRunner.Options.SkipPhases = data.resetCfg.SkipPhases
    		}
    		return data, nil
    	})
    
    	// binds the Runner to kubeadm reset command by altering
    	// command help, adding --skip-phases flag and by adding phases subcommands
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //   - Include "datapolicy" tags on the fields that hold secrets.
    //     This would result in the field values to be omitted when API structures are printed with klog.
    //   - Add "InitConfiguration.SkipPhases", "JoinConfiguration.SkipPhases" to allow skipping
    //     a list of phases during kubeadm init/join command execution.
    //   - Add "InitConfiguration.NodeRegistration.ImagePullPolicy" and "JoinConfiguration.NodeRegistration.ImagePullPolicy"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    // kubeadm composable workflows
    type RunnerOptions struct {
    	// FilterPhases defines the list of phases to be executed (if empty, all).
    	FilterPhases []string
    
    	// SkipPhases defines the list of phases to be excluded by execution (if empty, none).
    	SkipPhases []string
    }
    
    // RunData defines the data shared among all the phases included in the workflow, that is any type.
    type RunData = interface{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/join.go

    		if err != nil {
    			return nil, err
    		}
    		// If the flag for skipping phases was empty, use the values from config
    		if len(joinRunner.Options.SkipPhases) == 0 {
    			joinRunner.Options.SkipPhases = data.cfg.SkipPhases
    		}
    		return data, nil
    	})
    
    	// binds the Runner to kubeadm join command by altering
    	// command help, adding --skip-phases flag and by adding phases subcommands
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	  imagePullPolicy: "IfNotPresent"
    //	localAPIEndpoint:
    //	  advertiseAddress: "10.100.0.1"
    //	  bindPort: 6443
    //	certificateKey: "e6a2eb8581237ab72a4f494f30285ec12a9694d750b9785706a83bfcbbbd2204"
    //	skipPhases:
    //	- addon/kube-proxy
    //	---
    //	apiVersion: kubeadm.k8s.io/v1beta4
    //	kind: ClusterConfiguration
    //	etcd:
    //	  # one of local or external
    //	  local:
    //	    imageRepository: "registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Kubeadm: add a new field `skipPhases` to `v1beta3` `InitConfiguration` and `JoinConfiguration` that can contain a list of phases to skip during "kubeadm init" and "kubeadm join". The flag "--skip-phases" takes precedence over this field. ([#101923](https://github.com/kubernetes/ku...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top