mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-05-22 01:02:52 +00:00
13 lines
303 B
Go
13 lines
303 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package v1beta2
|
|
|
|
import rbacv1 "k8s.io/api/rbac/v1"
|
|
|
|
type AdditionalRoleBindingsSpec struct {
|
|
ClusterRoleName string `json:"clusterRoleName"`
|
|
// kubebuilder:validation:Minimum=1
|
|
Subjects []rbacv1.Subject `json:"subjects"`
|
|
}
|