mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 18:09:58 +00:00
15 lines
337 B
Go
15 lines
337 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
import rbacv1 "k8s.io/api/rbac/v1"
|
|
|
|
// +kubebuilder:object:generate=true
|
|
|
|
type AdditionalRoleBindingsSpec struct {
|
|
ClusterRoleName string `json:"clusterRoleName"`
|
|
// kubebuilder:validation:Minimum=1
|
|
Subjects []rbacv1.Subject `json:"subjects"`
|
|
}
|