Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for NamespaceId (0.25 sec)

  1. pkg/apis/admissionregistration/types.go

    	// Required.
    	Resources []string
    
    	// scope specifies the scope of this rule.
    	// Valid values are "Cluster", "Namespaced", and "*"
    	// "Cluster" means that only cluster-scoped resources will match this rule.
    	// Namespace API objects are cluster-scoped.
    	// "Namespaced" means that only namespaced resources will match this rule.
    	// "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// scope specifies the scope of this rule.
    	// Valid values are "Cluster", "Namespaced", and "*"
    	// "Cluster" means that only cluster-scoped resources will match this rule.
    	// Namespace API objects are cluster-scoped.
    	// "Namespaced" means that only namespaced resources will match this rule.
    	// "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      repeated string resources = 3;
    
      // scope specifies the scope of this rule.
      // Valid values are "Cluster", "Namespaced", and "*"
      // "Cluster" means that only cluster-scoped resources will match this rule.
      // Namespace API objects are cluster-scoped.
      // "Namespaced" means that only namespaced resources will match this rule.
      // "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	name := event.ObjFields["metadata.name"]
    	if len(namespace) > 0 {
    		if len(name) > 0 {
    			// namespaced watchers scoped by name
    			for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace, name: name}] {
    				c.watchersBuffer = append(c.watchersBuffer, watcher)
    			}
    		}
    		// namespaced watchers not scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace}] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		)
    		return
    	}
    
    	// if the scope in the CRD and the scope in request differ (with exception of the verbs in possiblyAcrossAllNamespacesVerbs
    	// for namespaced resources), pass request to the delegate, which is supposed to lead to a 404.
    	namespacedCRD, namespacedReq := crd.Spec.Scope == apiextensionsv1.NamespaceScoped, len(requestInfo.Namespace) > 0
    	if !namespacedCRD && namespacedReq {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		e.DestroyFunc()
    	}
    }
    
    // NewList implements rest.Lister.
    func (e *Store) NewList() runtime.Object {
    	return e.NewListFunc()
    }
    
    // NamespaceScoped indicates whether the resource is namespaced
    func (e *Store) NamespaceScoped() bool {
    	if e.CreateStrategy != nil {
    		return e.CreateStrategy.NamespaceScoped()
    	}
    	if e.UpdateStrategy != nil {
    		return e.UpdateStrategy.NamespaceScoped()
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = v1.ClusterScope
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = v1.NamespacedScope
    	// AllScopes means that all scopes are included.
    	AllScopes ScopeType = v1.AllScopes
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    		}
    		rawAlias[nh] = host.Name(s.Attributes.K8sAttributes.ExternalName)
    	}
    
    	// unnamespacedRawAlias is like rawAlias but without namespaces.
    	// This is because an `ExternalName` isn't namespaced. If there is a conflict, the behavior is undefined.
    	// This is split from above as a minor optimization to right-size the map
    	unnamespacedRawAlias := make(map[host.Name]host.Name, len(rawAlias))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top