Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 108 of 108 for initConfiguration (0.99 sec)

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

    	"k8s.io/kubernetes/cmd/kubeadm/app/features"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    )
    
    // ValidateInitConfiguration validates an InitConfiguration object and collects all encountered errors
    func ValidateInitConfiguration(c *kubeadm.InitConfiguration) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateNodeRegistrationOptions(&c.NodeRegistration, field.NewPath("nodeRegistration"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/manifests.go

    )
    
    // CreateInitStaticPodManifestFiles will write all static pod manifest files needed to bring up the control plane.
    func CreateInitStaticPodManifestFiles(manifestDir, patchesDir string, cfg *kubeadmapi.InitConfiguration, isDryRun bool) error {
    	klog.V(1).Infoln("[control-plane] creating static Pod files")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.12.md

    - 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)
  5. CHANGELOG/CHANGELOG-1.15.md

    - You can now use kubeadm's `InitConfiguration` and `JoinConfiguration` to define which preflight errors will be ignored. ([#75499](https://github.com/kubernetes/kubernetes/pull/75499), [@marccarre](https://github.com/marccarre))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  6. 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/kubernetes/pull/101923), [@neoli...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.20.md

    - kubeadm: make the command "kubeadm alpha kubeconfig user" accept a "--config" flag and remove the following flags:
      - apiserver-advertise-address / apiserver-bind-port: use either localAPIEndpoint from InitConfiguration or controlPlaneEndpoint from ClusterConfiguration.
      - cluster-name: use clusterName from ClusterConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

    * kubeadm: UnifiedControlPlaneImage is replaced by UseHyperKubeImage boolean value. ([#70793](https://github.com/kubernetes/kubernetes/pull/70793), [@rosti](https://github.com/rosti))
    * kubeadm v1beta1 API: InitConfiguration.APIEndpoint has been renamed to .LocalAPIEndpoint ([#70761](https://github.com/kubernetes/kubernetes/pull/70761), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
Back to top