Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for ResourceNames (0.55 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,4,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,5,rep,name=resourceNames"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1beta1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// ResourceNames is a list of resource instance names that the policy matches.
    	// Using this field requires Resources to be specified.
    	// An empty list implies that every instance of the resource is matched.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,3,rep,name=resourceNames"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. istioctl/pkg/multixds/gather.go

    				break
    			}
    		}
    	} else {
    		// If there is a specific pod name in ResourceName, use the agent in the pod.
    		if len(dr.ResourceNames) != 1 {
    			return nil, fmt.Errorf("`ResourceNames` must have one element when `all` flag is turned on")
    		}
    		slice := strings.SplitN(dr.ResourceNames[0], ".", 2)
    		if len(slice) != 2 {
    			return nil, fmt.Errorf("invalid resource name format: %v", slice)
    		}
    		podName := slice[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	}
    	pathsToIgnore := openapiutil.NewTrie(s.openAPIV3Config.IgnorePrefixes)
    	resourceNames := make([]string, 0)
    	for _, apiGroupInfo := range apiGroupInfos {
    		groupResources, err := getResourceNamesForGroup(apiPrefix, apiGroupInfo, pathsToIgnore)
    		if err != nil {
    			return nil, err
    		}
    		resourceNames = append(resourceNames, groupResources...)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  8. samples/addons/kiali.yaml

      - routes
      verbs:
      - get
    - apiGroups: ["authentication.k8s.io"]
      resources:
      - tokenreviews
      verbs:
      - create
    - apiGroups: ["oauth.openshift.io"]
      resources:
      - oauthclients
      resourceNames:
      - kiali-istio-system
      verbs:
      - get
    ...
    ---
    # Source: kiali-server/templates/rolebinding.yaml
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1alpha1/zz_generated.deepcopy.go

    func (in *NamedRuleWithOperations) DeepCopyInto(out *NamedRuleWithOperations) {
    	*out = *in
    	if in.ResourceNames != nil {
    		in, out := &in.ResourceNames, &out.ResourceNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	in.RuleWithOperations.DeepCopyInto(&out.RuleWithOperations)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ecds_test.go

    		ClusterID: constants.DefaultClusterName,
    	}
    	res := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    		Node: &core.Node{
    			Id:       ads.ID,
    			Metadata: md.ToStruct(),
    		},
    		ResourceNames: []string{wantExtensionConfigName},
    	})
    
    	var ec core.TypedExtensionConfig
    	err := res.Resources[0].UnmarshalTo(&ec)
    	if err != nil {
    		t.Fatal("Failed to unmarshal extension config", err)
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top