Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for CACertHashes (0.21 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	out.Token = in.Token
    	out.APIServerEndpoint = in.APIServerEndpoint
    	out.CACertHashes = *(*[]string)(unsafe.Pointer(&in.CACertHashes))
    	out.UnsafeSkipCAVerification = in.UnsafeSkipCAVerification
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	if len(b.APIServerEndpoint) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath, "APIServerEndpoint is not set"))
    	}
    
    	if len(b.CACertHashes) == 0 && !b.UnsafeSkipCAVerification {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("caCertHashes"), "", "using token-based discovery without caCertHashes can be unsafe. Set unsafeSkipCAVerification as true in your kubeadm config file or pass --discovery-token-unsafe-skip-ca-verification flag to continue"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/join.go

    		"For token-based discovery, the token used to validate cluster information fetched from the API server.",
    	)
    	flagSet.StringSliceVar(
    		&cfg.Discovery.BootstrapToken.CACertHashes, options.TokenDiscoveryCAHash, []string{},
    		"For token-based discovery, validate that the root CA public key matches this hash (format: \"<type>:<value>\").",
    	)
    	flagSet.BoolVar(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.22.md

    - Kubeadm: fix the bug that `kubeadm` only uses the first hash in `caCertHashes` to verify the root CA. ([#101977](https://github.com/kubernetes/kubernetes/pull/101977), [@SataQiu](https://github.com/SataQiu))
    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