Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,943 for subjects (0.15 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/clusterrolebinding.yaml

        release: {{ .Release.Name }}
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istiod-clusterrole{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
    subjects:
      - kind: ServiceAccount
        name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
        namespace: {{ .Values.global.istioNamespace }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 10 17:32:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/clusterrolebinding.yaml

        release: {{ .Release.Name }}
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istiod-clusterrole{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
    subjects:
      - kind: ServiceAccount
        name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
        namespace: {{ .Values.global.istioNamespace }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 10 17:32:44 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

        operator.istio.io/component: "Cni"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: {{ template "name" . }}
    subjects:
    - kind: ServiceAccount
      name: {{ template "name" . }}
      namespace: {{ .Release.Namespace }}
    ---
    {{- if .Values.cni.repair.enabled }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    func (in *Subject) DeepCopyInto(out *Subject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Subject.
    func (in *Subject) DeepCopy() *Subject {
    	if in == nil {
    		return nil
    	}
    	out := new(Subject)
    	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)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    	}
    	return false
    }
    
    func matchesSubject(user user.Info, subject flowcontrol.Subject) bool {
    	switch subject.Kind {
    	case flowcontrol.SubjectKindUser:
    		return subject.User != nil && (subject.User.Name == flowcontrol.NameAll || subject.User.Name == user.GetName())
    	case flowcontrol.SubjectKindGroup:
    		if subject.Group == nil {
    			return false
    		}
    		seek := subject.Group.Name
    		if seek == "*" {
    			return true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. pkg/registry/rbac/rest/storage_rbac.go

    		// If the source exists, but the target does not,
    		// copy the subjects, labels, and annotations from the former to create the latter.
    		klog.V(1).Infof("copying subjects, labels, and annotations from ClusterRoleBinding %q to template %q", existingBindingName, clusterRoleBindingToCreate.Name)
    		newCRB := clusterRoleBindingToCreate.DeepCopy()
    		newCRB.Subjects = existingRoleBinding.Subjects
    		newCRB.Labels = existingRoleBinding.Labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	subject := flowcontrol.Subject{}
    	var matchingUIs, skippingUIs []user.Info
    	x := rng.Float32()
    	switch {
    	case x < 0.33:
    		subject.Kind = flowcontrol.SubjectKindUser
    		subject.User, matchingUIs, skippingUIs = genUser(rng, pfx)
    	case x < 0.67:
    		subject.Kind = flowcontrol.SubjectKindGroup
    		subject.Group, matchingUIs, skippingUIs = genGroup(rng, pfx)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. pkg/apis/rbac/zz_generated.deepcopy.go

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

    func (in *Subject) DeepCopyInto(out *Subject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Subject.
    func (in *Subject) DeepCopy() *Subject {
    	if in == nil {
    		return nil
    	}
    	out := new(Subject)
    	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)
  10. cluster/addons/volumesnapshots/volume-snapshot-controller/rbac-volume-snapshot-controller.yaml

    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: volume-snapshot-controller-role
      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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 14:09:47 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top