Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,110 for Namespaced (0.3 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta1/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: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/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: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/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: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    }
    
    func getNamespace(kubeClient kube.CLIClient, ns string) (*corev1.Namespace, error) {
    	nsObj, err := kubeClient.Kube().CoreV1().Namespaces().Get(context.Background(), ns, metav1.GetOptions{})
    	if errors.IsNotFound(err) {
    		return nil, fmt.Errorf("namespace: %s not found", ns)
    	} else if err != nil {
    		return nil, fmt.Errorf("failed to get namespace %s: %v", ns, err)
    	}
    	return nsObj, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// Resources that this rule matches. An empty list implies all kinds in all API groups.
    	// +optional
    	Resources []GroupResources
    	// Namespaces that this rule matches.
    	// The empty string "" matches non-namespaced resources.
    	// An empty list implies every namespace.
    	// +optional
    	Namespaces []string
    
    	// NonResourceURLs is a set of URL paths that should be audited.
    	// `*`s are allowed, but only as the full, final step in the path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	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"`
    
    	// NonResourceURLs is a set of URL paths that should be audited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top