Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Negate (0.13 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: deprecated the kubeadm `RootlessControlPlane` feature gate (previously alpha), given that the core K8s `UserNamespacesSupport` feature gate graduated to Beta in 1.30.
      Once core Kubernetes support for user namespaces is generally available and kubeadm has started to support running the control plane in userns pods, the kubeadm `RootlessControlPlane` feature gate will be removed entirely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			structuredAuthnFeatureEnabled: false,
    			want:                          `issuer.claimValidationRules[0].expression: Invalid value: "claims.foo == 'bar'": expression is not supported when StructuredAuthenticationConfiguration feature gate is disabled`,
    		},
    		{
    			name: "CEL expression compilation error",
    			in: []api.ClaimValidationRule{
    				{Expression: "foo.bar"},
    			},
    			structuredAuthnFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/validation/validation_test.go

    					},
    				},
    			}},
    		},
    	}}
    	return minReplicasCases
    }
    
    func TestValidateHorizontalPodAutoscalerScaleToZeroEnabled(t *testing.T) {
    	// Enable HPAScaleToZero feature gate.
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.HPAScaleToZero, true)
    
    	zeroMinReplicasCases := prepareMinReplicasCases(t, 0)
    	for _, successCase := range zeroMinReplicasCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    		description string
    		gateEnabled bool
    		newPod      *api.Pod
    		wantPod     *api.Pod
    	}{
    		{
    			description: "gate enabled, creating pods with sleep action",
    			gateEnabled: true,
    			newPod:      podWithHandler(),
    			wantPod:     podWithHandler(),
    		},
    		{
    			description: "gate disabled, creating pods with sleep action",
    			gateEnabled: false,
    			newPod:      podWithHandler(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    									Items: &apiextensionsv1.JSONSchemaPropsOrArray{
    										Schema: numberSchema,
    									},
    								},
    							},
    						},
    					},
    				}},
    				applyPatchOperation{
    					"reate a list of numbers with duplicates using the old simple schema",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"values": map[string]interface{}{
    							"dups": []interface{}{1, 2, 2, 3, 1000, 2000},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_mounter_test.go

    			driver:                   "no_selinux",
    			seLinuxLabel:             "s0,c0",
    			volumeContext:            nil,
    			enableSELinuxFeatureGate: true,
    			expectedVolumeContext:    nil,
    		},
    		{
    			name:                     "should not include selinux mount option, if feature gate is enabled but CSIDriver does not exist",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/options_test.go

    		t.Fatalf("expected %q feature gate to be enabled after setting the command line flag", clientgofeaturegate.WatchListClient)
    	}
    }
    
    func assertWatchListClientFeatureDefaultValue(t *testing.T) {
    	watchListClientDefaultValue := clientgofeaturegate.FeatureGates().Enabled(clientgofeaturegate.WatchListClient)
    	if watchListClientDefaultValue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

      done
    }
    
    function parse_feature_gates {
      echo "featureGates:"
      # Convert from foo=true,bar=false to
      #   foo: true
      #   bar: false
      for gate in $(echo "$1" | tr ',' ' '); do
        echo "${gate}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: \2/'
      done
    }
    
    function parse_eviction {
      # Convert from memory.available<100Mi,nodefs.available<10%,nodefs.inodesFree<5% to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	// cycle will be put back to activeQueue if we were trying to schedule them
    	// when we received move request.
    	// TODO: this will be removed after SchedulingQueueHint goes to stable and the feature gate is removed.
    	moveRequestCycle int64
    
    	// preEnqueuePluginMap is keyed with profile name, valued with registered preEnqueue plugins.
    	preEnqueuePluginMap map[string][]framework.PreEnqueuePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	// policy allows the lifecycle to be altered, for example by deleting persistent
    	// volume claims when their stateful set is deleted, or when their pod is scaled
    	// down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled,
    	// which is beta.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top