Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for flowcontrolv1 (0.16 sec)

  1. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    			}
    		})
    	}
    }
    
    func TestFlowSchemaSpecChanged(t *testing.T) {
    	fs1 := &flowcontrolv1.FlowSchema{
    		Spec: flowcontrolv1.FlowSchemaSpec{},
    	}
    	fs2 := &flowcontrolv1.FlowSchema{
    		Spec: flowcontrolv1.FlowSchemaSpec{
    			MatchingPrecedence: 1,
    		},
    	}
    	fs1Defaulted := &flowcontrolv1.FlowSchema{
    		Spec: flowcontrolv1.FlowSchemaSpec{
    			MatchingPrecedence: flowcontrolapisv1.FlowSchemaDefaultMatchingPrecedence,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    		})
    	}
    }
    
    func TestPriorityLevelSpecChanged(t *testing.T) {
    	pl1 := &flowcontrolv1.PriorityLevelConfiguration{
    		Spec: flowcontrolv1.PriorityLevelConfigurationSpec{
    			Type: flowcontrolv1.PriorityLevelEnablementLimited,
    			Limited: &flowcontrolv1.LimitedPriorityLevelConfiguration{
    				LimitResponse: flowcontrolv1.LimitResponse{
    					Type: flowcontrolv1.LimitResponseTypeReject,
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    	flowcontrolclient "k8s.io/client-go/kubernetes/typed/flowcontrol/v1"
    	flowcontrollisters "k8s.io/client-go/listers/flowcontrol/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/flowcontrol"
    	flowcontrolapisv1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1"
    	flowcontrolapisv1beta1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. pkg/registry/flowcontrol/ensurer/strategy.go

    		var ok, autoUpdate bool
    		var err error
    		if value, ok = object.GetAnnotations()[flowcontrolv1.AutoUpdateAnnotationKey]; !ok {
    			// the configuration object does not have the annotation key,
    			// it's probably a user defined configuration object,
    			// so we can skip it.
    			klog.V(5).InfoS("Skipping deletion of APF object with no "+flowcontrolv1.AutoUpdateAnnotationKey+" annotation", "name", name)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    	}
    
    	pl := &flowcontrol.PriorityLevelConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: plName,
    		},
    		Spec: flowcontrol.PriorityLevelConfigurationSpec{
    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(int32(10)),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type: flowcontrol.LimitResponseTypeReject,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. pkg/controlplane/instance.go

    	"k8s.io/klog/v2"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	flowcontrolv1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1"
    	flowcontrolv1beta1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta1"
    	flowcontrolv1beta2 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta2"
    	flowcontrolv1beta3 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta3"
    	controlplaneapiserver "k8s.io/kubernetes/pkg/controlplane/apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindUser,
    			User: &flowcontrol.UserSubject{Name: "goodu"}}},
    		NonResourceRules: []flowcontrol.NonResourcePolicyRule{{
    			Verbs:           []string{"badverb"},
    			NonResourceURLs: []string{"/openapi/v2"}}}}, {
    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindUser,
    			User: &flowcontrol.UserSubject{Name: "goodu"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    func genPL(rng *rand.Rand, name string) *flowcontrol.PriorityLevelConfiguration {
    	plc := &flowcontrol.PriorityLevelConfiguration{
    		ObjectMeta: metav1.ObjectMeta{Name: name},
    		Spec: flowcontrol.PriorityLevelConfigurationSpec{
    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(int32(rng.Int31n(100) + 1)),
    				LimitResponse: flowcontrol.LimitResponse{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    		flowcontrol.FlowDistinguisherMethodByNamespaceType,
    		flowcontrol.PolicyRulesWithSubjects{
    			Subjects: kubeSystemServiceAccount(flowcontrol.NameAll),
    			ResourceRules: []flowcontrol.ResourcePolicyRule{resourceRule(
    				[]string{flowcontrol.VerbAll},
    				[]string{flowcontrol.APIGroupAll},
    				[]string{flowcontrol.ResourceAll},
    				[]string{flowcontrol.NamespaceEvery},
    				true)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/validation/validation.go

    	string(flowcontrol.SubjectKindServiceAccount),
    	string(flowcontrol.SubjectKindGroup),
    	string(flowcontrol.SubjectKindUser),
    )
    
    var supportedPriorityLevelEnablement = sets.NewString(
    	string(flowcontrol.PriorityLevelEnablementExempt),
    	string(flowcontrol.PriorityLevelEnablementLimited),
    )
    
    var supportedLimitResponseType = sets.NewString(
    	string(flowcontrol.LimitResponseTypeQueue),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
Back to top