Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for NamespaceId (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/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`.
    	Scope ResourceScope `json:"scope" protobuf:"bytes,4,opt,name=scope,casttype=ResourceScope"`
    	// versions is the list of all API versions of the defined custom resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// +optional
    	// +listType=atomic
    	Resources []GroupResources `json:"resources,omitempty" protobuf:"bytes,5,rep,name=resources"`
    	// Namespaces that this rule matches.
    	// The empty string "" matches non-namespaced resources.
    	// An empty list implies every namespace.
    	// +optional
    	// +listType=atomic
    	Namespaces []string `json:"namespaces,omitempty" protobuf:"bytes,6,rep,name=namespaces"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // Name is the name of resource being referenced.
      optional string name = 3;
    
      // Namespace that contains the referenced resource. Must be empty
      // for cluster-scoped resources and non-empty for namespaced
      // resources.
      // +optional
      optional string namespace = 4;
    }
    
    // ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.
    message ResourceHandle {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/graph_builder.go

    				// the ownerNode is cluster-scoped and virtual, and does not match the child node's namespace.
    				// the owner could be a missing instance of a namespaced type incorrectly referenced by a cluster-scoped child (issue #98040).
    				// enqueue this child to attemptToDelete to verify parent references.
    				hasPotentiallyInvalidOwnerReference = true
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	var errs []error
    	for policyKey, bindingSpecs := range policiesToBindings {
    		var inf generic.NamespacedLister[P] = s.policyInformer
    		if len(policyKey.Namespace) > 0 {
    			inf = s.policyInformer.Namespaced(policyKey.Namespace)
    		}
    		policySpec, err := inf.Get(policyKey.Name)
    		if errors.IsNotFound(err) {
    			// Policy for bindings doesn't exist. This can happen if the policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. istioctl/pkg/waypoint/waypoint.go

    			if err != nil {
    				return err
    			}
    			if enrollNamespace {
    				if !overwrite && hasWaypoint {
    					// we don't want to error on the user when they don't explicitly overwrite namespaced Waypoints,
    					// we just warn them and provide a suggestion
    					fmt.Fprintf(cmd.OutOrStdout(), "Warning: namespace (%s) already has an enrolled Waypoint. Consider "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/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
    - 31.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"scope":       "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. Subresources match the scope of their parent resource. Default is \"*\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. docs/config/README.md

    in etcd, if KMS is configured. Please refer to how to encrypt your config and IAM credentials [here](https://github.com/minio/minio/blob/master/docs/kms/IAM.md).
    
    > NOTE: if *path_prefix* is set then MinIO will not federate your buckets, namespaced IAM assets are assumed as isolated tenants, only buckets are considered globally unique but performing a lookup with a *bucket* which belongs to a different tenant will fail unlike federated setups where MinIO would port-forward and route the request...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    Instead, the opposite was chosen: each workload will list the policies that select it.
    This works out to be more efficient in common cases where policies change much less often than workloads.
    This only applies for selector-based policies; namespaced and global policies can be handled without needing to list them out in the Workload API.
    
    ## Redirection
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top