Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 216 for NamespaceId (0.47 sec)

  1. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "default": "",
                "description": "name is the plural name of the resource.",
                "type": "string"
              },
              "namespaced": {
                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  2. 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)
  3. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	if pod := c.parsePod(new); pod != nil {
    		c.enqueuePVCs(logger, pod, deleted)
    
    		// An update notification might mask the deletion of a pod X and the
    		// following creation of a pod Y with the same namespaced name as X. If
    		// that's the case X needs to be processed as well to handle the case
    		// where it is blocking deletion of a PVC not referenced by Y, otherwise
    		// such PVC will never be deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/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)
  5. 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)
  6. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "default": "",
                "description": "name is the plural name of the resource.",
                "type": "string"
              },
              "namespaced": {
                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top