Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for NamespaceId (0.35 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	Names CustomResourceDefinitionNames `json:"names" protobuf:"bytes,3,opt,name=names"`
    	// scope indicates whether the defined custom resource is cluster- or namespace-scoped.
    	// Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`.
    	Scope ResourceScope `json:"scope" protobuf:"bytes,4,opt,name=scope,casttype=ResourceScope"`
    	// validation describes the schema used for validation and pruning of the custom resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache.go

    	lock sync.Mutex
    
    	// trackerByServiceMap is the basis of this cache. It contains endpoint
    	// slice trackers grouped by service name and endpoint slice name. The first
    	// key represents a namespaced service name while the second key represents
    	// an endpoint slice name. Since endpoints can move between slices, we
    	// require slice specific caching to prevent endpoints being removed from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	Version string
    	// Names are the names used to describe this custom resource
    	Names CustomResourceDefinitionNames
    	// Scope indicates whether this resource is cluster or namespace scoped.  Default is namespaced
    	Scope ResourceScope
    	// Validation describes the validation methods for CustomResources
    	// Optional, the global validation schema for all versions.
    	// Top-level and per-version schemas are mutually exclusive.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/types.go

    	// FlowDistinguisherMethodByNamespaceType specifies that the flow distinguisher is the namespace of the
    	// object that the request acts upon. If the object is not namespaced, or if the request is a non-resource
    	// request, then the distinguisher will be the empty string. An example usage of this type is to provide
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated GroupResources resources = 5;
    
      // Namespaces that this rule matches.
      // The empty string "" matches non-namespaced resources.
      // An empty list implies every namespace.
      // +optional
      // +listType=atomic
      repeated string namespaces = 6;
    
      // NonResourceURLs is a set of URL paths that should be audited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pkg/apis/rbac/validation/validation_test.go

    	ValidateRoleTest{
    		role: rbac.Role{
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: "default",
    				Name:      "default",
    			},
    			Rules: []rbac.PolicyRule{{
    				// non-resource URLs are invalid for namespaced rules
    				Verbs:           []string{"get"},
    				NonResourceURLs: []string{"/*"},
    			}},
    		},
    		wantErr: true,
    		errType: field.ErrorTypeInvalid,
    		field:   "rules[0].nonResourceURLs",
    	}.test(t)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// Resources that this rule matches. An empty list implies all kinds in all API groups.
    	// +optional
    	Resources []GroupResources
    	// Namespaces that this rule matches.
    	// The empty string "" matches non-namespaced resources.
    	// An empty list implies every namespace.
    	// +optional
    	Namespaces []string
    
    	// NonResourceURLs is a set of URL paths that should be audited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer.go

    		return authorizer.DecisionNoOpinion, "cannot read subresource", nil
    	}
    	if len(attrs.GetNamespace()) == 0 {
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, "can only read namespaced object of this type", nil
    	}
    	return r.authorize(nodeName, startingType, attrs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// FlowDistinguisherMethodByNamespaceType specifies that the flow distinguisher is the namespace of the
    	// object that the request acts upon. If the object is not namespaced, or if the request is a non-resource
    	// request, then the distinguisher will be the empty string. An example usage of this type is to provide
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// FlowDistinguisherMethodByNamespaceType specifies that the flow distinguisher is the namespace of the
    	// object that the request acts upon. If the object is not namespaced, or if the request is a non-resource
    	// request, then the distinguisher will be the empty string. An example usage of this type is to provide
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top