Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 191 for ResourceNames (0.27 sec)

  1. pilot/pkg/xds/rds_test.go

    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			ads := s.ConnectADS().WithType(v3.RouteType).WithID(tt.node)
    			ads.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: tt.routes})
    		})
    	}
    }
    
    const (
    	app3Ip    = "10.2.0.1"
    	gatewayIP = "10.3.0.1"
    )
    
    // Common code for the xds testing.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1/generated.proto

      // +optional
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +optional
      repeated string resourceNames = 4;
    
      // NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/rbac/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // +optional
      repeated string resources = 4;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +optional
      repeated string resourceNames = 5;
    
      // NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top