Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 264 for ResourceNames (0.75 sec)

  1. pkg/apis/authorization/types.go

    	//  "*/foo" represents the subresource 'foo' for all resources in the specified apiGroups.
    	Resources []string
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
    	ResourceNames []string
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    type NonResourceRule struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo.go

    			Namespace: metav1.NamespacePublic,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{bootstrapapi.ConfigMapClusterInfo},
    			},
    		},
    	})
    	if err != nil {
    		return err
    	}
    
    	return apiclient.CreateOrUpdateRoleBinding(client, &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/rbac/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.
      // +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
    - 8.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/uploadconfig/uploadconfig.go

    			Namespace: metav1.NamespaceSystem,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{kubeadmconstants.KubeadmConfigConfigMap},
    			},
    		},
    	})
    	if err != nil {
    		return err
    	}
    
    	// Binds the NodesKubeadmConfigClusterRoleName to all the bootstrap tokens
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 04 07:20:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. tests/integration/security/external_ca/main_test.go

              name: istiod-clusterrole-istio-system
              patches:
                - path: rules[-1]
                  value: |
                    apiGroups:
                    - certificates.k8s.io
                    resourceNames:
                    - clusterissuers.istio.io/*
                    resources:
                    - signers
                    verbs:
                    - approve
    {{- end }}
    {{- if .isExternalControlPlane}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

          - "certificatesigningrequests/status"
        verbs: ["update", "create", "get", "delete", "watch"]
      - apiGroups: ["certificates.k8s.io"]
        resources:
          - "signers"
        resourceNames:
    {{- range .Values.global.certSigners }}
        - {{ . | quote }}
    {{- end }}
        verbs: ["approve"]
    {{- end}}
    
      # Used by Istiod to verify the JWT tokens
      - apiGroups: ["authentication.k8s.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/nds_test.go

    			gen := s.Discovery.Generators[v3.NameTableType]
    			tt.request.Start = time.Now()
    			nametable, _, _ := gen.Generate(s.SetupProxy(tt.proxy), &model.WatchedResource{ResourceNames: tt.resources}, tt.request)
    			if len(tt.nameTable) == 0 {
    				if len(nametable) != 0 {
    					t.Errorf("unexpected nametable. want: %v, got: %v", tt.nameTable, nametable)
    				}
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        - certificatesigningrequests/status
        verbs:
        - update
      - apiGroups:
        - certificates.k8s.io
        resourceNames:
        - kubernetes.io/kube-apiserver-client-kubelet
        resources:
        - signers
        verbs:
        - approve
      - apiGroups:
        - certificates.k8s.io
        resourceNames:
        - kubernetes.io/kube-apiserver-client
        - kubernetes.io/kube-apiserver-client-kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/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] = 0x1a
    		}
    	}
    	if len(m.Resources) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/bench_test.go

    		}
    		return &model.WatchedResource{ResourceNames: watchedResources}
    	case v3.RouteType:
    		l := s.ConfigGen.BuildListeners(proxy, s.PushContext())
    		routeNames := xdstest.ExtractRoutesFromListeners(l)
    		return &model.WatchedResource{ResourceNames: routeNames}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top