Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 150 for priorityLevelConfiguration (0.48 sec)

  1. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

    message FlowSchemaSpec {
      // `priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot
      // be resolved, the FlowSchema will be ignored and marked as invalid in its status.
      // Required.
      optional PriorityLevelConfigurationReference priorityLevelConfiguration = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "priorityLevelConfiguration": {
          "name": "nameValue"
        },
        "matchingPrecedence": 2,
        "distinguisherMethod": {
          "type": "typeValue"
        },
        "rules": [
          {
            "subjects": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/flowcontrol.apiserver.k8s.io.v1.FlowSchema.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      distinguisherMethod:
        type: typeValue
      matchingPrecedence: 2
      priorityLevelConfiguration:
        name: nameValue
      rules:
      - nonResourceRules:
        - nonResourceURLs:
          - nonResourceURLsValue
          verbs:
          - verbsValue
        resourceRules:
        - apiGroups:
          - apiGroupsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      distinguisherMethod:
        type: typeValue
      matchingPrecedence: 2
      priorityLevelConfiguration:
        name: nameValue
      rules:
      - nonResourceRules:
        - nonResourceURLs:
          - nonResourceURLsValue
          verbs:
          - verbsValue
        resourceRules:
        - apiGroups:
          - apiGroupsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1beta3.FlowSchema.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      distinguisherMethod:
        type: typeValue
      matchingPrecedence: 2
      priorityLevelConfiguration:
        name: nameValue
      rules:
      - nonResourceRules:
        - nonResourceURLs:
          - nonResourceURLsValue
          verbs:
          - verbsValue
        resourceRules:
        - apiGroups:
          - apiGroupsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/types.go

    type FlowSchemaSpec struct {
    	// `priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot
    	// be resolved, the FlowSchema will be ignored and marked as invalid in its status.
    	// Required.
    	PriorityLevelConfiguration PriorityLevelConfigurationReference `json:"priorityLevelConfiguration" protobuf:"bytes,1,opt,name=priorityLevelConfiguration"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta1/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&FlowSchema{},
    		&FlowSchemaList{},
    		&PriorityLevelConfiguration{},
    		&PriorityLevelConfigurationList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 13 23:20:39 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta3/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&FlowSchema{},
    		&FlowSchemaList{},
    		&PriorityLevelConfiguration{},
    		&PriorityLevelConfigurationList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 22:54:19 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    type FlowSchemaSpec struct {
    	// `priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot
    	// be resolved, the FlowSchema will be ignored and marked as invalid in its status.
    	// Required.
    	PriorityLevelConfiguration PriorityLevelConfigurationReference `json:"priorityLevelConfiguration" protobuf:"bytes,1,opt,name=priorityLevelConfiguration"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    message FlowSchemaSpec {
      // `priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot
      // be resolved, the FlowSchema will be ignored and marked as invalid in its status.
      // Required.
      optional PriorityLevelConfigurationReference priorityLevelConfiguration = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top