Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for NamespaceId (0.59 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/types.go

    // StorageClass describes the parameters for a class of storage for
    // which PersistentVolumes can be dynamically provisioned.
    //
    // StorageClasses are non-namespaced; the name of the storage class
    // according to etcd is in ObjectMeta.Name.
    type StorageClass struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	ServiceName() string
    
    	// NamespaceName returns the name of the namespace or "" if the Namespace is nil.
    	NamespaceName() string
    
    	// NamespacedName returns the namespaced name for this service.
    	// Short form for Config().NamespacedName().
    	NamespacedName() NamespacedName
    
    	// ServiceAccountName returns the service account string for this service.
    	ServiceAccountName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/apis/rbac/validation/validation.go

    	}
    
    	if len(rule.NonResourceURLs) > 0 {
    		if isNamespaced {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("nonResourceURLs"), rule.NonResourceURLs, "namespaced rules cannot apply to non-resource URLs"))
    		}
    		if len(rule.APIGroups) > 0 || len(rule.Resources) > 0 || len(rule.ResourceNames) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top