Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 127 for roleRef (0.11 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/zz_generated.deepcopy.go

    func (in *RoleRef) DeepCopyInto(out *RoleRef) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleRef.
    func (in *RoleRef) DeepCopy() *RoleRef {
    	if in == nil {
    		return nil
    	}
    	out := new(RoleRef)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    }
    
    var xxx_messageInfo_RoleList proto.InternalMessageInfo
    
    func (m *RoleRef) Reset()      { *m = RoleRef{} }
    func (*RoleRef) ProtoMessage() {}
    func (*RoleRef) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c8ba2e7dd472de66, []int{10}
    }
    func (m *RoleRef) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *RoleRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    }
    
    var xxx_messageInfo_RoleList proto.InternalMessageInfo
    
    func (m *RoleRef) Reset()      { *m = RoleRef{} }
    func (*RoleRef) ProtoMessage() {}
    func (*RoleRef) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c5bc2d145acd4e45, []int{10}
    }
    func (m *RoleRef) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *RoleRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    }
    
    var xxx_messageInfo_RoleList proto.InternalMessageInfo
    
    func (m *RoleRef) Reset()      { *m = RoleRef{} }
    func (*RoleRef) ProtoMessage() {}
    func (*RoleRef) Descriptor() ([]byte, []int) {
    	return fileDescriptor_758889dfd9a88fa6, []int{10}
    }
    func (m *RoleRef) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *RoleRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. prow/config/metrics/metrics.yaml

      name: metrics-server:system:auth-delegator
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:auth-delegator
    subjects:
    - kind: ServiceAccount
      name: metrics-server
      namespace: kube-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      labels:
        k8s-app: metrics-server
      name: system:metrics-server
    roleRef:
      apiGroup: rbac.authorization.k8s.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. cluster/addons/volumesnapshots/volume-snapshot-controller/rbac-volume-snapshot-controller.yaml

      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    subjects:
      - kind: ServiceAccount
        name: volume-snapshot-controller
        namespace: kube-system
    roleRef:
      kind: ClusterRole
      # change the name also here if the ClusterRole gets renamed
      name: volume-snapshot-controller-runner
      apiGroup: rbac.authorization.k8s.io
    
    ---
    kind: Role
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 14:09:47 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    			Namespace: metav1.NamespaceSystem,
    		},
    	}
    
    	crb := &rbac.ClusterRoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: constants.KubeProxyClusterRoleBindingName,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    			Kind:     "ClusterRole",
    			Name:     constants.KubeProxyClusterRoleName,
    		},
    		Subjects: []rbac.Subject{
    			{
    				Kind:      rbac.ServiceAccountKind,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. pkg/apis/rbac/v1/helpers.go

    func NewClusterBinding(clusterRoleName string) *ClusterRoleBindingBuilder {
    	return &ClusterRoleBindingBuilder{
    		ClusterRoleBinding: rbacv1.ClusterRoleBinding{
    			ObjectMeta: metav1.ObjectMeta{Name: clusterRoleName},
    			RoleRef: rbacv1.RoleRef{
    				APIGroup: GroupName,
    				Kind:     "ClusterRole",
    				Name:     clusterRoleName,
    			},
    		},
    	}
    }
    
    func (r *ClusterRoleBindingBuilder) Groups(groups ...string) *ClusterRoleBindingBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. pkg/registry/rbac/validation/rule_test.go

    					{Kind: rbacv1.GroupKind, Name: "group1"},
    				},
    				RoleRef: rbacv1.RoleRef{APIGroup: rbacv1.GroupName, Kind: "Role", Name: "readthings"},
    			},
    		},
    		clusterRoleBindings: []*rbacv1.ClusterRoleBinding{
    			{
    				Subjects: []rbacv1.Subject{
    					{Kind: rbacv1.UserKind, Name: "admin"},
    					{Kind: rbacv1.GroupKind, Name: "admin"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. manifests/charts/istio-operator/templates/clusterrole_binding.yaml

    subjects:
    - kind: ServiceAccount
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{.Release.Namespace}}
    roleRef:
      kind: ClusterRole
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      apiGroup: rbac.authorization.k8s.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 28 18:55:36 UTC 2021
    - 498 bytes
    - Viewed (0)
Back to top