Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 138 for ClusterConfiguration (0.27 sec)

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

    		return nil
    	}
    
    	// create the new service account key (or use existing)
    	return certsphase.CreateServiceAccountKeyAndPublicKeyFiles(data.CertificateWriteDir(), data.Cfg().ClusterConfiguration.EncryptionAlgorithmType())
    }
    
    func runCerts(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("certs phase invoked with an invalid data struct")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/apply.go

    		return err
    	}
    
    	// Validate requested and validate actual version
    	klog.V(1).Infoln("[upgrade/apply] validating requested and actual version")
    	if err := configutil.NormalizeKubernetesVersion(&initCfg.ClusterConfiguration); err != nil {
    		return err
    	}
    
    	// Use normalized version string in all following code.
    	newK8sVersion, err := version.ParseSemantic(initCfg.KubernetesVersion)
    	if err != nil {
    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/cmd/upgrade/plan.go

    	}
    
    	// Fetch the current state of the component configs
    	klog.V(1).Infoln("[upgrade/plan] analysing component config version states")
    	configVersionStates, err := componentconfigs.GetVersionStates(&initCfg.ClusterConfiguration, client)
    	if err != nil {
    		return errors.WithMessage(err, "[upgrade/versions] FATAL")
    	}
    
    	// No upgrades available
    	if len(availUpgrades) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	// has occurred in any aspects.
    	if err := etcdphase.CreateLocalEtcdStaticPodManifestFile(pathMgr.TempManifestDir(), pathMgr.PatchesDir(), cfg.NodeRegistration.Name, &cfg.ClusterConfiguration, &cfg.LocalAPIEndpoint, false /* isDryRun */); err != nil {
    		return true, errors.Wrap(err, "error creating local etcd static pod manifest file")
    	}
    
    	retries := 10
    	retryInterval := 15 * time.Second
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks.go

    	}
    
    	checks := []Checker{
    		ImagePullCheck{
    			runtime:         containerRuntime,
    			imageList:       images.GetControlPlaneImages(&cfg.ClusterConfiguration),
    			sandboxImage:    images.GetPauseImage(&cfg.ClusterConfiguration),
    			imagePullPolicy: cfg.NodeRegistration.ImagePullPolicy,
    			imagePullSerial: serialPull,
    		},
    	}
    	return RunChecks(checks, os.Stderr, ignorePreflightErrors)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.20.md

      - apiserver-advertise-address / apiserver-bind-port: use either localAPIEndpoint from InitConfiguration or controlPlaneEndpoint from ClusterConfiguration.
      - cluster-name: use clusterName from ClusterConfiguration
      - cert-dir: use certificatesDir from ClusterConfiguration ([#94879](https://github.com/kubernetes/kubernetes/pull/94879), [@knight42](https://github.com/knight42)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.22.md

    - Kubeadm: Remove the deprecated hyperkube image support in `v1beta3`. This implies removal of `ClusterConfiguration.UseHyperKubeImage.` ([#101537](https://github.com/kubernetes/kubernetes/pull/101537), [@neolit123](https://github.com/neolit123))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.12.md

    - kubeadm: The ControlPlaneEndpoint was moved from the API config struct to ClusterConfiguration ([#67830](https://github.com/kubernetes/kubernetes/pull/67830), [@fabriziopandini](https://github.com/fabriziopandini))
    - kubeadm: InitConfiguration now consists of two structs: InitConfiguration and ClusterConfiguration ([#67441](https://github.com/kubernetes/kubernetes/pull/67441), [@rosti](https://github.com/rosti))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.16.md

    - kubeadm ClusterConfiguration now supports featureGates: IPv6DualStack: true ([#80145](https://github.com/kubernetes/kubernetes/pull/80145), [@Arvinderpal](https://github.com/Arvinderpal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

    image repository for CoreDNS kubeadm now will append the "coredns"  image name instead of  "coredns/coredns", thus restoring the behaviour existing before the v1.21 release. Users who rely on nested folder for the coredns image should set the "clusterConfiguration.dns.imageRepository" value including the nested path name (e.g using "registry.company.xyz/coredns" will force kubeadm to use "registry.company.xyz/coredns/coredns" image). No action is needed if using the default registry (k8s.gcr.io). ([...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top