Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,882 for Namespaced (0.2 sec)

  1. pkg/controller/garbagecollector/graph_builder.go

    			ownerIsNamespaced := len(ownerNode.identity.Namespace) > 0
    			if ownerIsNamespaced && ownerNode.identity.Namespace != n.identity.Namespace {
    				if ownerNode.isObserved() {
    					// The owner node has been observed via an informer
    					// the dependent's namespace doesn't match the observed owner's namespace, this is definitely wrong.
    					// cluster-scoped owners can be referenced as an owner from any namespace or cluster-scoped object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// only if either (a) this list contains that target namespace or
    	// (b) this list contains "*".  Note that "*" matches any
    	// specified namespace but does not match a request that _does
    	// not specify_ a namespace (see the `clusterScope` field for
    	// that).
    	// This list may be empty, but only if `clusterScope` is true.
    	// +optional
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	}
    
    	// the request must be against the system namespace reserved for node leases
    	if attrs.GetNamespace() != api.NamespaceNodeLease {
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, fmt.Sprintf("can only access leases in the %q system namespace", api.NamespaceNodeLease), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// The indexer is used to find pods which might use the PVC.
    	objs, err := c.podIndexer.ByIndex(common.PodPVCIndex, fmt.Sprintf("%s/%s", pvc.Namespace, pvc.Name))
    	if err != nil {
    		return false, fmt.Errorf("cache-based list of pods failed while processing %s/%s: %s", pvc.Namespace, pvc.Name, err.Error())
    	}
    	for _, obj := range objs {
    		pod, ok := obj.(*v1.Pod)
    		if !ok {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    type ServiceReference struct {
    	// namespace is the namespace of the service.
    	// Required
    	Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
    	// name is the name of the service.
    	// Required
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      optional string kind = 2;
    
      // 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)
Back to top