Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for skewY (0.04 sec)

  1. cmd/kubeadm/app/phases/upgrade/policy_test.go

    			expectedMandatoryErrs: 1,
    		},
    		{
    			name: "the maximum skew between the cluster version and the kubelet versions should be three minor version.",
    			vg: &fakeVersionGetter{
    				clusterVersion: "v1.13.0",
    				kubeletVersion: "v1.10.8",
    				kubeadmVersion: "v1.13.0",
    			},
    			newK8sVersion: "v1.13.0",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. .github/SECURITY.md

    [Kubernetes version and version skew support policy] page on the Kubernetes website.
    
    ## Reporting a Vulnerability
    
    Instructions for reporting a vulnerability can be found on the
    [Kubernetes Security and Disclosure Information] page.
    
    [Kubernetes version and version skew support policy]: https://kubernetes.io/docs/setup/release/version-skew-policy/#supported-versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 16 17:14:26 UTC 2019
    - 616 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy.go

    	MaximumAllowedMinorVersionDowngradeSkew = 1
    
    	// MaximumAllowedMinorVersionKubeletSkew describes how many minor versions the control plane version and the kubelet can skew in a kubeadm cluster
    	MaximumAllowedMinorVersionKubeletSkew = 3
    )
    
    // VersionSkewPolicyErrors describes version skew errors that might be seen during the validation process in EnforceVersionPolicies
    type VersionSkewPolicyErrors struct {
    	Mandatory []error
    	Skippable []error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils.go

    }
    
    // nextScheduleTimeDuration returns the time duration to requeue based on
    // the schedule and last schedule time. It adds a 100ms padding to the next requeue to account
    // for Network Time Protocol(NTP) time skews. If the time drifts the adjustment, which in most
    // realistic cases should be around 100s, the job will still be executed without missing
    // the schedule.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/punycode.go

    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    // encode encodes a string as specified in section 6.3 and prepends prefix to
    // the result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/punycode.go

    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    func punyError(s string) error { return &labelError{s, "A3"} }
    
    // decode decodes a string as specified in section 6.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants_test.go

    			expectedResult: DefaultKubernetesPlaceholderVersion,
    		},
    		{
    			name:           "valid skew of -1",
    			versionInfo:    &apimachineryversion.Info{Major: "1", GitVersion: "v1.23.0"},
    			n:              -1,
    			expectedResult: version.MustParseSemantic("v1.22.0"),
    		},
    		{
    			name:           "valid skew of 0",
    			versionInfo:    &apimachineryversion.Info{Major: "1", GitVersion: "v1.23.0"},
    			n:              0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/options/options.go

    	// locally due to version skew.
    	PeerCAFile string
    
    	// PeerAdvertiseAddress is the IP for this kube-apiserver which is used by peer apiservers to route a request
    	// to this apiserver. This happens in cases where the peer is not able to serve the request due to
    	// version skew.
    	PeerAdvertiseAddress peerreconcilers.PeerAdvertiseAddress
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/type.go

    func (n *typeNode) Sym() *types.Sym   { return n.typ.Sym() }
    
    // TypeNode returns the Node representing the type t.
    func TypeNode(t *types.Type) Node {
    	if n := t.Obj(); n != nil {
    		if n.Type() != t {
    			base.Fatalf("type skew: %v has type %v, but expected %v", n, n.Type(), t)
    		}
    		return n.(*Name)
    	}
    	return newTypeNode(t)
    }
    
    // A DynamicType represents a type expression whose exact type must be
    // computed dynamically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 20 05:56:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/apply.go

    	}
    
    	if err := features.ValidateVersion(features.InitFeatureGates, initCfg.FeatureGates, initCfg.KubernetesVersion); err != nil {
    		return err
    	}
    
    	// Enforce the version skew policies
    	klog.V(1).Infoln("[upgrade/version] enforcing version skew policies")
    	allowRCUpgrades, ok := cmdutil.ValueFromFlagsOrConfig(flagSet, options.AllowRCUpgrades, upgradeCfg.Apply.AllowRCUpgrades, &flags.allowRCUpgrades).(*bool)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top