mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-04 02:30:23 +00:00
15 lines
349 B
Go
15 lines
349 B
Go
// Copyright 2020-2023 Project Capsule Authors.
|
|
// 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"`
|
|
}
|