Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 227 for RoleBinding (0.29 sec)

  1. samples/addons/kiali.yaml

      - cacerts
      - istio-ca-secret
      resources:
      - secrets
      verbs:
      - get
      - list
      - watch
    ...
    ---
    # Source: kiali-server/templates/rolebinding-controlplane.yaml
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      name: kiali-controlplane
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/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)
  2. tests/integration/security/egress_sidecar_tls_origination_test.go

    kind: Role
    metadata:
      name: allow-list-secrets
    rules:
    - apiGroups:
      - ""
      resources:
      - secrets
      verbs:
      - list
    `
    
    	rolebinding := `
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      name: allow-list-secrets-to-{{ .ServiceAccount }}
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: allow-list-secrets
    subjects:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  4. pkg/apis/rbac/v1beta1/defaults.go

    }
    
    func SetDefaults_ClusterRoleBinding(obj *rbacv1beta1.ClusterRoleBinding) {
    	if len(obj.RoleRef.APIGroup) == 0 {
    		obj.RoleRef.APIGroup = GroupName
    	}
    }
    func SetDefaults_RoleBinding(obj *rbacv1beta1.RoleBinding) {
    	if len(obj.RoleRef.APIGroup) == 0 {
    		obj.RoleRef.APIGroup = GroupName
    	}
    }
    func SetDefaults_Subject(obj *rbacv1beta1.Subject) {
    	if len(obj.APIGroup) == 0 {
    		switch obj.Kind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1alpha1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  6. cluster/addons/volumesnapshots/volume-snapshot-controller/rbac-volume-snapshot-controller.yaml

      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups: ["coordination.k8s.io"]
      resources: ["leases"]
      verbs: ["get", "watch", "list", "delete", "update", "create"]
    
    ---
    kind: RoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: volume-snapshot-controller-leaderelection
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    subjects:
    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. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

      namespace: {{ .Release.Namespace }}
    ---
    {{- if .Values.cni.repair.enabled }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: {{ template "name" . }}-repair-rolebinding
      labels:
        k8s-app: {{ template "name" . }}-repair
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pkg/apis/rbac/register.go

    	AddToScheme   = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 10 02:22:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  10. pkg/api/testing/defaulting_test.go

    		{Group: "rbac.authorization.k8s.io", Version: "v1alpha1", Kind: "ClusterRoleBindingList"}:                  {},
    		{Group: "rbac.authorization.k8s.io", Version: "v1alpha1", Kind: "RoleBinding"}:                             {},
    		{Group: "rbac.authorization.k8s.io", Version: "v1alpha1", Kind: "RoleBindingList"}:                         {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top