Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 287 for NamespaceId (0.23 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // scope indicates the scope of a resource, either Cluster or Namespaced
      optional string scope = 3;
    
      // singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// from the kubectl CLI interface.
    	SingularName string `json:"singularName" protobuf:"bytes,6,opt,name=singularName"`
    	// namespaced indicates if a resource is namespaced or not.
    	Namespaced bool `json:"namespaced" protobuf:"varint,2,opt,name=namespaced"`
    	// group is the preferred group of the resource.  Empty implies the group of the containing resource list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  3. pkg/apis/storage/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Captures the intent to attach or detach the specified volume to/from
    // the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    type VolumeAttachment struct {
    	metav1.TypeMeta
    
    	// Standard object metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    var specialVerbsNoSubresources = sets.NewString("proxy")
    
    // namespaceSubresources contains subresources of namespace
    // this list allows the parser to distinguish between a namespace subresource, and a namespaced resource
    var namespaceSubresources = sets.NewString("status", "finalize")
    
    // NamespaceSubResourcesForTest exports namespaceSubresources for testing in pkg/controlplane/master_test.go, so we never drift
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/podcgroupns.go

    	// namespaces are in use and therefore we can no longer discern if that is the
    	// case from within SPIRE agent container (since the container itself is
    	// namespaced). As such, the regex has been relaxed to simply find the pod UID
    	// followed by the container ID with allowances for arbitrary punctuation, and
    	// container runtime prefixes, etc.
    	regexp.MustCompile(`` +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    // The synthetic MCS service is a copy of the real k8s Service (e.g. cluster.local) with the same
    // namespaced name, but with the hostname and VIPs changed to the appropriate ClusterSet values.
    // The real k8s Service can live anywhere in the mesh and does not have to reside in the same
    // cluster as the ServiceImport.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. plugin/pkg/admission/gc/gc_admission.go

    			Subresource:     "finalizers",
    			Name:            ref.Name,
    			ResourceRequest: true,
    			Path:            "",
    		}
    		if mapping.Scope.Name() == meta.RESTScopeNameNamespace {
    			// if the owner is namespaced, it must be in the same namespace as the dependent is.
    			ar.Namespace = attributes.GetNamespace()
    		}
    		ret = append(ret, ar)
    	}
    	return ret, nil
    }
    
    // only keeps the blocking refs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. 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)
  10. 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 (1)
Back to top