Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 136 for ResourceNames (0.16 sec)

  1. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    			Namespace: metav1.NamespacePublic,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"Secret"},
    				ResourceNames: []string{bootstrapapi.ConfigMapClusterInfo},
    			},
    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("error creating role: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/authorization/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.  "*" means all.
      // +optional
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/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.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	resourceNames := sets.NewString()
    	for i, rName := range n.ResourceNames {
    		for _, msg := range path.ValidatePathSegmentName(rName, false) {
    			allErrors = append(allErrors, field.Invalid(fldPath.Child("resourceNames").Index(i), rName, msg))
    		}
    		if resourceNames.Has(rName) {
    			allErrors = append(allErrors, field.Duplicate(fldPath.Child("resourceNames").Index(i), rName))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/authorization/v1beta1/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.  "*" means all.
      // +optional
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/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.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads.go

    	if strings.HasPrefix(req.TypeUrl, v3.DebugType) {
    		return s.pushXds(con,
    			&model.WatchedResource{TypeUrl: req.TypeUrl, ResourceNames: req.ResourceNames},
    			&model.PushRequest{Full: true, Push: con.proxy.LastPushContext})
    	}
    
    	if s.StatusReporter != nil {
    		s.StatusReporter.RegisterEvent(con.ID(), req.TypeUrl, req.ResponseNonce)
    	}
    
    	shouldRespond, delta := xds.ShouldRespond(con.proxy, con.ID(), req)
    	if !shouldRespond {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if len(m.ResourceNames) > 0 {
    		for iNdEx := len(m.ResourceNames) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ResourceNames[iNdEx])
    			copy(dAtA[i:], m.ResourceNames[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ResourceNames[iNdEx])))
    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	if len(m.Resources) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubelet/config.go

    			Namespace: metav1.NamespaceSystem,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{kubeadmconstants.KubeletBaseConfigurationConfigMap},
    			},
    		},
    	}); err != nil {
    		return err
    	}
    
    	return apiclient.CreateOrUpdateRoleBinding(client, &rbac.RoleBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. istioctl/pkg/util/handlers/handlers.go

    	// one of those pods.
    	builder := factory.NewBuilder().
    		WithScheme(kubelib.IstioScheme, kubelib.IstioScheme.PrioritizedVersionsAllGroups()...).
    		NamespaceParam(ns).DefaultNamespace().
    		SingleResourceType()
    	builder.ResourceNames("pods", resname)
    	infos, err := builder.Do().Infos()
    	if err != nil {
    		return nil, "", "", "", fmt.Errorf("failed retrieving: %v in the %q namespace", err, ns)
    	}
    	if len(infos) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top