Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 597 for rbacv1 (0.09 sec)

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

    			Namespace: metav1.NamespacePublic,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    			Kind:     "Role",
    			Name:     BootstrapSignerClusterRoleName,
    		},
    		Subjects: []rbac.Subject{
    			{
    				Kind: rbac.UserKind,
    				Name: user.Anonymous,
    			},
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubelet/config.go

    			Namespace: metav1.NamespaceSystem,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    			Kind:     "Role",
    			Name:     kubeadmconstants.KubeletBaseConfigMapRole,
    		},
    		Subjects: []rbac.Subject{
    			{
    				Kind: rbac.GroupKind,
    				Name: kubeadmconstants.NodesGroup,
    			},
    			{
    				Kind: rbac.GroupKind,
    				Name: kubeadmconstants.NodeBootstrapTokenAuthGroup,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/apis/rbac/v1alpha1/conversion_test.go

    				Subjects: []v1alpha1.Subject{
    					{Kind: "User", APIVersion: "rbac", Name: "myuser"},
    					{Kind: "Group", APIVersion: "rbac", Name: "mygroup"},
    					{Kind: "ServiceAccount", APIVersion: "rbac", Name: "mysa", Namespace: "myns"},
    					{Kind: "User", APIVersion: "rbac/v8", Name: "myuser"},
    					{Kind: "Group", APIVersion: "rbac/v8", Name: "mygroup"},
    					{Kind: "ServiceAccount", APIVersion: "rbac/v8", Name: "mysa", Namespace: "myns"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:23:55 UTC 2017
    - 4K bytes
    - Viewed (0)
  4. pkg/apis/rbac/v1alpha1/doc.go

    limitations under the License.
    */
    
    // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/rbac
    // +k8s:conversion-gen-external-types=k8s.io/api/rbac/v1alpha1
    // +k8s:defaulter-gen=TypeMeta
    // +k8s:defaulter-gen-input=k8s.io/api/rbac/v1alpha1
    
    // +groupName=rbac.authorization.k8s.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 14 15:00:18 UTC 2021
    - 885 bytes
    - Viewed (0)
  5. pkg/registry/rbac/clusterrolebinding/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &rbac.ClusterRoleBinding{} },
    		NewListFunc:               func() runtime.Object { return &rbac.ClusterRoleBindingList{} },
    		DefaultQualifiedResource:  rbac.Resource("clusterrolebindings"),
    		SingularQualifiedResource: rbac.Resource("clusterrolebinding"),
    
    		CreateStrategy: clusterrolebinding.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. pkg/registry/rbac/role/strategy.go

    // on creation.
    func (strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	_ = obj.(*rbac.Role)
    }
    
    // PrepareForUpdate clears fields that are not allowed to be set by end users on update.
    func (strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newRole := obj.(*rbac.Role)
    	oldRole := old.(*rbac.Role)
    
    	_, _ = newRole, oldRole
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  7. pkg/registry/rbac/rolebinding/strategy.go

    func (strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	_ = obj.(*rbac.RoleBinding)
    }
    
    // PrepareForUpdate clears fields that are not allowed to be set by end users on update.
    func (strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newRoleBinding := obj.(*rbac.RoleBinding)
    	oldRoleBinding := old.(*rbac.RoleBinding)
    
    	_, _ = newRoleBinding, oldRoleBinding
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. cluster/gce/addons/loadbalancing/cloud-provider-binding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: gce:cloud-provider
      namespace: kube-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: gce:cloud-provider
    subjects:
    - kind: ServiceAccount
      name: cloud-provider
      namespace: kube-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 28 03:47:26 UTC 2018
    - 685 bytes
    - Viewed (0)
  9. pkg/registry/rbac/clusterrole/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &rbac.ClusterRole{} },
    		NewListFunc:               func() runtime.Object { return &rbac.ClusterRoleList{} },
    		DefaultQualifiedResource:  rbac.Resource("clusterroles"),
    		SingularQualifiedResource: rbac.Resource("clusterrole"),
    
    		CreateStrategy: clusterrole.Strategy,
    		UpdateStrategy: clusterrole.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. pkg/registry/rbac/clusterrole/strategy.go

    func (strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	_ = obj.(*rbac.ClusterRole)
    }
    
    // PrepareForUpdate clears fields that are not allowed to be set by end users on update.
    func (strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newClusterRole := obj.(*rbac.ClusterRole)
    	oldClusterRole := old.(*rbac.ClusterRole)
    
    	_, _ = newClusterRole, oldClusterRole
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top