Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for initConfiguration (5.33 sec)

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

    	bootstraptokenv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/bootstraptoken/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // InitConfiguration contains a list of elements that is specific "kubeadm init"-only runtime
    // information.
    type InitConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// `kubeadm init`-only information. These fields are solely used the first time `kubeadm init` runs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/apply.go

    func PerformControlPlaneUpgrade(flags *applyFlags, client clientset.Interface, waiter apiclient.Waiter, initCfg *kubeadmapi.InitConfiguration, upgradeCfg *kubeadmapi.UpgradeConfiguration) error {
    	// OK, the cluster is hosted using static pods. Upgrade a static-pod hosted cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks.go

    // Name returns the label for memory
    func (MemCheck) Name() string {
    	return "Mem"
    }
    
    // InitNodeChecks returns checks specific to "kubeadm init"
    func InitNodeChecks(execer utilsexec.Interface, cfg *kubeadmapi.InitConfiguration, ignorePreflightErrors sets.Set[string], isSecondaryControlPlane bool, downloadCerts bool) ([]Checker, error) {
    	if !isSecondaryControlPlane {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/constants/constants.go

    	ClusterConfigurationKind = "ClusterConfiguration"
    
    	// InitConfigurationKind is the string kind value for the InitConfiguration struct
    	InitConfigurationKind = "InitConfiguration"
    
    	// JoinConfigurationKind is the string kind value for the JoinConfiguration struct
    	JoinConfigurationKind = "JoinConfiguration"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks_test.go

    		t.Skip("not a privileged user")
    	}
    	internalcfg, err := configutil.DefaultedStaticInitConfiguration()
    	if err != nil {
    		t.Fatalf("unexpected failure when defaulting InitConfiguration: %v", err)
    	}
    	internalcfg.LocalAPIEndpoint.AdvertiseAddress = "" // AdvertiseAddress is optional, it could be auto-detected.
    	ipv4File := "FileContent--proc-sys-net-ipv4-ip_forward"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top