Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,882 for Namespaced (0.22 sec)

  1. pkg/apis/storage/types.go

    	// The following VolumeContext will be passed if podInfoOnMount is set to true.
    	// This list might grow, but the prefix will be used.
    	// "csi.storage.k8s.io/pod.name": pod.Name
    	// "csi.storage.k8s.io/pod.namespace": pod.Namespace
    	// "csi.storage.k8s.io/pod.uid": string(pod.UID)
    	// "csi.storage.k8s.io/ephemeral": "true" if the volume is an ephemeral inline volume
    	//                                 defined by a CSIVolumeSource, otherwise "false"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/types.go

    	// specify a namespace (which happens either because the resource
    	// is not namespaced or the request targets all namespaces).
    	// If this field is omitted or false then the `namespaces` field
    	// must contain a non-empty list.
    	// +optional
    	ClusterScope bool
    
    	// `namespaces` is a list of target namespaces that restricts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/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: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. plugin/pkg/admission/gc/gc_admission.go

    			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)
  5. 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)
  6. cni/pkg/nodeagent/podcgroupns.go

    	// descendants of a kubepods directory, however, as of Kubernetes 1.21, cgroups
    	// 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pkg/proxy/endpointslicecache.go

    		err = fmt.Errorf("no %s label set on endpoint slice: %s", discovery.LabelServiceName, endpointSlice.Name)
    	} else if endpointSlice.Namespace == "" || endpointSlice.Name == "" {
    		err = fmt.Errorf("expected EndpointSlice name and namespace to be set: %v", endpointSlice)
    	}
    	return types.NamespacedName{Namespace: endpointSlice.Namespace, Name: serviceName}, endpointSlice.Name, err
    }
    
    // byEndpoint helps sort endpoints by endpoint string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// +optional
    	CABundle []byte
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    type ServiceReference struct {
    	// `namespace` is the namespace of the service.
    	// Required
    	Namespace string
    	// `name` is the name of the service.
    	// Required
    	Name string
    
    	// `path` is an optional URL path which will be sent in any request to
    	// this service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated GroupResources resources = 5;
    
      // Namespaces that this rule matches.
      // The empty string "" matches non-namespaced resources.
      // An empty list implies every namespace.
      // +optional
      // +listType=atomic
      repeated string namespaces = 6;
    
      // NonResourceURLs is a set of URL paths that should be audited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// if `paramKind` is namespace-scoped.
    	//
    	Name string `json:"name,omitempty" protobuf:"bytes,1,rep,name=name"`
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    	// the search for params to a specific namespace. Applies to both `name` and
    	// `selector` fields.
    	//
    	// A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top